-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
44 lines (44 loc) · 1.5 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
{
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt/bridge.git"
},
"license": "MIT",
"scripts": {
"build": "FORCE_COLOR=1 pnpm --filter './packages/**' prepack",
"build:stub": "pnpm --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.14.4",
"@nuxtjs/eslint-config": "^12.0.0",
"@nuxtjs/eslint-config-typescript": "^12.1.0",
"changelogen": "^0.5.7",
"devalue": "^5.1.1",
"eslint": "^8.57.1",
"eslint-plugin-jsdoc": "^50.4.3",
"jiti": "^2.4.0",
"playwright-core": "^1.48.2",
"std-env": "^3.8.0",
"vitest": "^2.1.4"
},
"resolutions": {
"@nuxt/bridge": "workspace:*",
"@nuxt/bridge-schema": "workspace:*"
},
"engines": {
"node": "^14.16.0 || ^16.11.0 || >=17.0.0"
},
"packageManager": "[email protected]"
}