-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.04 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.04 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
{
"name": "@vuetify/zero",
"version": "0.1.13",
"private": true,
"type": "module",
"scripts": {
"dev": "pnpm --filter=dev dev",
"dev:docs": "pnpm --filter=docs dev",
"build": "pnpm --filter=\"./packages/*\" build",
"build:0": "pnpm --filter=\"./packages/0\" build",
"build:paper": "pnpm --filter=\"./packages/paper\" build",
"build:packages": "pnpm --filter=\"./packages/*\" build",
"build:dev": "pnpm --filter=dev build",
"build:play": "pnpm --filter=@vuetify-private/playground build",
"build:docs": "pnpm --filter=docs build",
"build:apps": "pnpm --filter=docs --filter=dev --filter=@vuetify-private/playground build",
"build:all": "pnpm --filter=\"./packages/*\" --filter=docs --filter=dev --filter=@vuetify-private/playground build",
"test": "vitest",
"test:run": "vitest run",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:bench": "vitest --reporter=verbose bench --run",
"test:bench:json": "vitest bench --run --outputJson apps/docs/public/benchmarks.json",
"bench": "vitest --reporter=default bench",
"metrics": "pnpm test:coverage && pnpm test:bench:json && node scripts/generate-metrics.js",
"typecheck": "pnpm --filter=\"./packages/*\" typecheck",
"typecheck:0": "pnpm --filter=\"./packages/0\" typecheck",
"typecheck:paper": "pnpm --filter=\"./packages/paper\" typecheck",
"lint": "eslint --concurrency auto",
"lint:fix": "eslint --fix --concurrency auto",
"dev:play": "pnpm --filter=@vuetify-private/playground dev",
"preview:dev": "pnpm --filter=dev preview",
"preview:play": "pnpm --filter=@vuetify-private/playground preview",
"preview:docs": "pnpm --filter=docs preview",
"repo:knip": "knip",
"repo:sherif": "sherif",
"repo:check": "pnpm repo:knip && pnpm repo:sherif",
"validate": "pnpm lint && pnpm typecheck && pnpm test:run",
"release": "bumpp -r",
"release:prepare": "pnpm validate && pnpm build",
"release:patch": "bumpp patch -r",
"release:minor": "bumpp minor -r",
"release:major": "bumpp major -r",
"postinstall": "tsx apps/docs/build/generate-api-whitelist.ts && node scripts/init-dev.js",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-push": "pnpm lint:fix && pnpm typecheck && pnpm test:run && pnpm repo:check"
},
"devDependencies": {
"@js-temporal/polyfill": "catalog:",
"@tsconfig/node22": "catalog:",
"@types/node": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vue/tsconfig": "catalog:",
"@vuetify/github-releaser": "catalog:",
"bumpp": "catalog:",
"conventional-changelog-vuetify": "catalog:",
"eslint": "catalog:",
"eslint-config-vuetify": "catalog:",
"eslint-plugin-vuejs-accessibility": "catalog:",
"happy-dom": "catalog:",
"knip": "catalog:",
"sherif": "catalog:",
"simple-git-hooks": "catalog:",
"tsx": "catalog:",
"typescript": "catalog:",
"vitest": "catalog:",
"vue-tsc": "catalog:"
},
"packageManager": "[email protected]",
"web-types": "dist/json/web-types.json"
}