This repository has been archived by the owner on Dec 19, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
47 lines (47 loc) · 1.66 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
{
"private": true,
"packageManager": "pnpm@8.7.6",
"scripts": {
"build": "pnpm dev:prepare && pnpm -r --filter \"./packages/**\" run build",
"stub": "pnpm -r --filter \"./packages/**\" run stub",
"dev:prepare": "pnpm stub && pnpm nuxi prepare playground",
"dev": "pnpm run build && pnpm -C playground test:unit",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs .",
"lint:all:prettier": "pnpm lint:prettier \"**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"play": "pnpm run stub && pnpm -C playground dev",
"prepare": "husky install",
"test": "pnpm -C playground test && pnpm test:types",
"test:types": "vue-tsc --noEmit",
"release": "cp README.md LICENCE packages/nuxt-vitest && cp README.md LICENCE packages/vitest-environment-nuxt && pnpm build && pnpm -r --filter \"./packages/**\" run release && pnpm -r publish"
},
"devDependencies": {
"@nuxt/eslint-config": "0.2.0",
"@nuxt/schema": "3.7.4",
"@vitest/coverage-v8": "0.33.0",
"changelogen": "0.5.5",
"eslint": "8.51.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"lint-staged": "15.0.2",
"nuxt": "3.7.4",
"prettier": "3.0.3",
"typescript": "5.2.2",
"unbuild": "2.0.0",
"vitest": "0.33.0",
"vue": "3.3.4",
"vue-tsc": "1.8.19"
},
"pnpm": {
"overrides": {
"@nuxt/kit": "^3.7.4",
"@nuxt/schema": "^3.7.4",
"vitest-environment-nuxt": "workspace:*",
"nuxt-vitest": "workspace:*"
}
},
"version": "0.10.2"
}