-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "vue-router-webcache",
"version": "1.1.6",
"description": "Enable vue-router routing for google webcache(and same caches)",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "copyfiles -u 2 lib/nuxt/router.js dist/nuxt",
"pretest": "jest --clearCache && rimraf test/fixtures/*/.nuxt && rimraf test/fixtures/nuxt/router.js && rimraf test/fixtures/nuxt-base/router.js && rimraf test/fixtures/*/node_modules",
"test": "jest",
"test:watch": "jest --watch",
"pages:dev": "nuxt dev examples/gh-pages-nuxt",
"pages:generate": "nuxt generate examples/gh-pages-nuxt",
"prepare": "yarn run build",
"prepublishOnly": "yarn run test",
"postversion": "git push && git push --tags"
},
"files": [
"lib/",
"dist/"
],
"exports": {
".": "./dist/index.js",
"./nuxt": "./dist/nuxt/index.js",
"./lib/": "./lib/"
},
"engines": {
"node": "12.x || >=14.x",
"yarn": "1.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kolobok12309/vue-router-webcache.git"
},
"keywords": [
"router",
"webcache",
"nuxt-module",
"vue"
],
"author": "Kolobok12309 <sova123409@gmail.com>",
"license": "MIT",
"private": false,
"homepage": "https://github.com/Kolobok12309/vue-router-webcache#readme",
"peerDependencies": {
"vue-router": "^3.0.0 || ^4.0.0"
},
"dependencies": {
"consola": "^2.15.3",
"defu": "^5.0.0",
"lodash.template": "^4.5.0",
"nuxt-vuex-router-sync": "^0.0.3"
},
"devDependencies": {
"@nuxt/test-utils": "^0.2.2",
"@nuxt/types": "^2.15.8",
"@nuxtjs/proxy": "^2.1.0",
"@nuxtjs/router": "^1.6.1",
"@types/jest": "^27.0.2",
"@types/lodash.template": "^4.5.0",
"@types/node": "^16.9.2",
"@types/url-parse": "^1.4.4",
"@vue/cli-service": "^4.5.15",
"copyfiles": "^2.4.1",
"css-loader": "5",
"jest": "^27.3.1",
"nuxt": "^2.15.8",
"playwright": "^1.16.3",
"rimraf": "^3.0.2",
"ts-node": "^10.4.0",
"typescript": "^4.4.3",
"vue-loader": "^15.9.8",
"vue-router3": "npm:vue-router@3",
"vue-router4": "npm:vue-router@4",
"vue3": "npm:vue@next"
}
}