-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
56 lines (56 loc) · 1.77 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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/bridge.git"
},
"license": "MIT",
"scripts": {
"build": "FORCE_COLOR=1 pnpm run --filter './packages/**' prepack",
"build:stub": "pnpm run --filter './packages/**' prepack --stub",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:preview": "node ./playground/.output/server/index.mjs",
"dev:prepare": "pnpm build:stub && nuxi prepare playground",
"lint": "eslint --ext .vue,.ts,.js,.mjs .",
"release": "./scripts/release.sh && pnpm dev:prepare",
"test:fixtures": "pnpm dev:prepare && JITI_ESM_RESOLVE=1 vitest run --dir test",
"test:fixtures:dev": "TEST_ENV=dev pnpm test:fixtures",
"test:fixtures:webpack": "TEST_BUILDER=webpack pnpm test:fixtures",
"test:fixtures:webpack:dev": "TEST_BUILDER=webpack TEST_ENV=dev pnpm test:fixtures",
"test:unit": "vitest run --dir packages"
},
"devDependencies": {
"@nuxt/test-utils": "3.15.4",
"@nuxtjs/eslint-config-typescript": "12.1.0",
"@types/semver": "7.5.8",
"changelogen": "0.5.7",
"consola": "^3.4.0",
"devalue": "5.1.1",
"eslint": "8.57.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jsdoc": "50.6.1",
"execa": "9.5.2",
"globby": "14.0.2",
"h3": "1.13.1",
"installed-check": "9.3.0",
"jiti": "2.4.2",
"knip": "5.42.1",
"nuxi": "3.20.0",
"ofetch": "1.4.1",
"pathe": "^2.0.1",
"playwright-core": "1.49.1",
"semver": "7.6.3",
"std-env": "3.8.0",
"vitest": "2.1.8",
"vue": "2.7.16"
},
"resolutions": {
"@nuxt/bridge": "workspace:*",
"@nuxt/bridge-schema": "workspace:*"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || >=17.0.0"
},
"packageManager": "[email protected]"
}