-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.22 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.22 KB
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
{
"name": "nuxt-prerender-kit",
"version": "0.0.4",
"description": "Nuxt module for prerender-optimized data fetching with automatic tree-shaking",
"repository": {
"url": "https://github.com/hyf0/nuxt-prerender-kit"
},
"license": "MIT",
"packageManager": "pnpm@10.29.2",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.mts",
"import": "./dist/module.mjs"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
}
},
"main": "./dist/module.mjs",
"files": [
"dist",
"skills"
],
"scripts": {
"prepack": "nuxt-module-build build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "pnpm prepare:module && pnpm prepare:playground && pnpm prepare:fixtures",
"prepare:module": "nuxt-module-build build --stub && nuxt-module-build prepare",
"prepare:playground": "nuxi prepare playground",
"prepare:fixtures": "cd test/fixtures/ssg && nuxi prepare && cd ../ssr && nuxi prepare && cd ../csr && nuxi prepare && cd ../hybrid && nuxi prepare",
"test": "vitest run",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit && cd .. && pnpm test:types:e2e",
"test:types:e2e": "cd test/fixtures/ssg && vue-tsc --noEmit && cd ../ssr && vue-tsc --noEmit && cd ../csr && vue-tsc --noEmit && cd ../hybrid && vue-tsc --noEmit",
"test:watch": "vitest watch",
"docs": "pnpm -C docs dev",
"docs:build": "pnpm -C docs generate",
"docs:preview": "pnpm -C docs preview"
},
"dependencies": {
"@babel/parser": "^7.26.0",
"@nuxt/kit": "^4.3.0",
"@rollup/pluginutils": "^5.1.4",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.17"
},
"devDependencies": {
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.3.0",
"@nuxt/test-utils": "^3.23.0",
"@types/estree": "^1.0.8",
"@types/node": "latest",
"@vue/test-utils": "^2.4.0",
"happy-dom": "^17.0.0",
"nuxt": "^4.3.0",
"playwright": "^1.58.0",
"playwright-core": "^1.58.0",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vitest": "^3.2.0",
"vue": "^3.5.13",
"vue-tsc": "^3.2.2"
},
"peerDependencies": {
"nuxt": "^4.0.0"
}
}