forked from dulnan/nuxt-multi-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.32 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
{
"name": "nuxt-multi-cache",
"version": "3.1.1",
"description": "SSR route, component and data cache for Nuxt.js",
"type": "module",
"exports": {
".": {
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./dist/runtime/serverOptions": {
"import": "./dist/runtime/serverOptions/index.mjs",
"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",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:serve": "node playground/.output/server/index.mjs",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"generate": "nuxi generate",
"typecheck": "nuxi typecheck",
"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",
"fake-data": "node ./scripts/fakeData.js",
"test": "TZ=utc vitest",
"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.6.5",
"@tusbar/cache-control": "^1.0.1",
"consola": "3.2.3"
},
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"@nuxt/module-builder": "^0.4.0",
"@nuxt/schema": "^3.6.5",
"@nuxt/test-utils": "^3.6.5",
"@nuxtjs/eslint-config-typescript": "^12.0.0",
"@types/node": "^20.4.10",
"@vitest/coverage-c8": "^0.33.0",
"@vue/test-utils": "^2.4.1",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-vue": "^9.17.0",
"happy-dom": "^10.9.0",
"nuxt": "^3.6.5",
"nuxt-vitest": "^0.10.2",
"playwright": "^1.37.0",
"prettier": "^3.0.1",
"vitepress": "^1.0.0-rc.4",
"vue-json-pretty": "^2.2.4"
}
}