-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
95 lines (95 loc) · 2.85 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "nuxt-multi-cache",
"version": "3.4.0",
"description": "SSR route, component and data cache for Nuxt.js",
"type": "module",
"exports": {
".": {
"import": {
"types": "./dist/types.d.ts",
"default": "./dist/module.mjs"
},
"require": {
"types": "./dist/types.d.ts",
"default": "./dist/module.cjs"
}
},
"./dist/runtime/serverOptions": {
"import": "./dist/runtime/serverOptions/index.js",
"types": "./dist/runtime/serverOptions/index.d.ts"
}
},
"main": "./dist/module.cjs",
"module": "./dist/module.mjs",
"types": "./dist/types.d.ts",
"keywords": [
"nuxt",
"cache",
"ssr",
"page",
"caching",
"component"
],
"author": {
"name": "Jan Hug",
"url": "https://dulnan.net",
"email": "[email protected]"
},
"license": "MIT",
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:playground-disk": "nuxi dev playground-disk",
"dev:playground-nuxt3": "nuxi dev playground-nuxt3",
"dev:build": "nuxi build playground",
"dev:serve": "node playground/.output/server/index.mjs",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground-disk && nuxi prepare playground-nuxt3 && nuxi prepare playground",
"dev:inspect": "nuxi dev playground --inspect",
"typecheck": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"docs:dev": "vitepress dev docs --port 5000",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs --port 5000",
"prettier": "prettier ./src --check",
"prettier:fix": "prettier ./src --write",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"fake-data": "node ./scripts/fakeData.js",
"test": "TZ=utc vitest",
"test:debug": "TZ=utc vitest --disable-console-intercept --reporter=json",
"test:ci": "TZ=utc vitest run",
"test:coverage": "TZ=utc vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dulnan/nuxt-multi-cache.git"
},
"files": [
"dist"
],
"dependencies": {
"@nuxt/kit": "^3.13.2",
"@tusbar/cache-control": "^1.0.2"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@nuxt/module-builder": "^0.7.1",
"@nuxt/schema": "^3.13.2",
"@nuxt/test-utils": "^3.14.3",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"@types/node": "^20.14.2",
"@vue/test-utils": "^2.4.6",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.26.0",
"h3-compression": "^0.3.2",
"happy-dom": "^14.12.0",
"nuxt": "^3.13.2",
"playwright-core": "^1.44.1",
"prettier": "^3.3.2",
"vitepress": "^1.4.1",
"vitest": "^1.6.0",
"vue-json-pretty": "^2.4.0",
"vue-tsc": "^2.1.6"
}
}