-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.05 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.05 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
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
96
97
98
99
100
101
102
103
104
{
"name": "@nuxt/bridge",
"version": "3.0.0",
"repository": "nuxt/framework",
"license": "MIT",
"type": "module",
"main": "./module.cjs",
"types": "./types.d.ts",
"files": [
"bin",
"module.cjs",
"types.d.ts",
"dist"
],
"bin": {
"nuxi": "./bin/nuxt.mjs"
},
"scripts": {
"build": "pnpm prepack",
"prepack": "unbuild",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "node ./playground/.output/server/index.mjs",
"dev:prepare": "unbuild --stub && nuxi prepare playground",
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
"test:fixtures": "pnpm dev:prepare && JITI_ESM_RESOLVE=1 vitest run --dir test",
"test:fixtures:dev": "NUXT_TEST_DEV=true pnpm test:fixtures",
"test:fixtures:webpack": "TEST_WITH_WEBPACK=1 pnpm test:fixtures",
"test:fixtures:webpack:dev": "TEST_WITH_WEBPACK=1 NUXT_TEST_DEV=true pnpm test:fixtures"
},
"dependencies": {
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-transform-typescript": "^7.20.0",
"@nuxt/devalue": "^2.0.0",
"@nuxt/kit": "3.0.0-rc.12",
"@nuxt/postcss8": "^1.1.3",
"@nuxt/schema": "3.0.0-rc.12",
"@nuxt/ui-templates": "^0.4.0",
"@vitejs/plugin-legacy": "^2.3.0",
"@vitejs/plugin-vue2": "^1.1.2",
"acorn": "^8.8.1",
"cookie-es": "^0.5.0",
"defu": "^6.1.0",
"destr": "^1.2.0",
"enhanced-resolve": "^5.10.0",
"escape-string-regexp": "^5.0.0",
"estree-walker": "^2.0.2",
"externality": "^1.0.0",
"fs-extra": "^10.1.0",
"get-port-please": "^2.6.1",
"globby": "^13.1.2",
"h3": "^0.8.6",
"hash-sum": "^2.0.0",
"knitwork": "^1.0.0",
"magic-string": "^0.26.7",
"mlly": "^0.5.16",
"nitropack": "^0.6.1",
"node-fetch": "^3.2.10",
"nuxi": "3.0.0-rc.12",
"ohash": "^1.0.0",
"pathe": "^0.3.9",
"perfect-debounce": "^0.1.3",
"postcss": "^8",
"postcss-import": "^15.0.0",
"postcss-import-resolver": "^2.0.0",
"postcss-preset-env": "^7.8.2",
"postcss-url": "^10.1.3",
"scule": "^1.0.0",
"semver": "^7.3.8",
"std-env": "^3.3.0",
"terser": "^5.15.1",
"ufo": "^1.0.0",
"unctx": "^2.0.2",
"unimport": "^0.7.0",
"unplugin": "^0.10.2",
"untyped": "^1.0.0",
"vite": "~3.2.2",
"vue-bundle-renderer": "^0.5.0"
},
"devDependencies": {
"@nuxt/bridge": "link:.",
"@nuxt/test-utils": "npm:@nuxt/test-utils-edge@latest",
"@nuxt/types": "^2.15.8",
"@nuxtjs/eslint-config": "^11.0.0",
"@nuxtjs/eslint-config-typescript": "^11.0.0",
"@types/fs-extra": "^9.0.13",
"@types/hash-sum": "^1.0.0",
"@types/node-fetch": "^3.0.2",
"@vueuse/head": "^0.9.7",
"eslint": "^8.26.0",
"eslint-plugin-jsdoc": "^39.6.2",
"jiti": "^1.16.0",
"nuxt": "^2",
"unbuild": "0.9.4",
"vitest": "^0.21.1",
"vue": "^2.7.12",
"vue-router": "^3.6.5"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"packageManager": "pnpm@7.14.2"
}