-
-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 3.33 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
{
"name": "@vue/devtools-monorepo",
"version": "9.0.0-beta.0",
"private": true,
"description": "DevTools for Vue.js",
"keywords": [
"dx",
"vue-devtools"
],
"homepage": "https://github.com/vuejs/devtools#readme",
"bugs": {
"url": "https://github.com/vuejs/devtools/issues"
},
"license": "MIT",
"author": "webfansplz",
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/devtools.git"
},
"type": "module",
"main": "index.js",
"scripts": {
"build": "vp run --filter './packages/*' --filter '!vite-plugin-vue-devtools' build && vp run --filter vite-plugin-vue-devtools build",
"check": "vp check",
"dep:up": "taze -I major -r",
"docs": "pnpm -C docs docs:dev",
"docs:build": "pnpm -C docs docs:build",
"docs:preview": "pnpm -C docs docs:preview",
"format": "vp fmt",
"format:check": "vp fmt --check",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"pack": "pnpm build",
"play": "pnpm --filter @vue/devtools-playground-basic dev",
"play:reactivity-graph": "pnpm --filter @vue/devtools-playground-reactivity-graph dev",
"postinstall": "simple-git-hooks",
"release": "bumpp -r",
"release-extension": "pnpm build && node scripts/release-extension.mjs && pnpm zip",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:integration": "vitest run tests/integration",
"test:performance": "vitest run --config vitest.performance.config.ts",
"test:smoke:chrome": "pnpm --filter @vue/devtools-kit build && pnpm --filter @vue/devtools-client build && pnpm --filter @vue/devtools-chrome build && vitest run --config vitest.smoke.config.ts",
"test:smoke:vite": "pnpm --filter @vue/devtools-kit build && pnpm --filter @vue/devtools-client build && pnpm --filter vite-plugin-vue-devtools build && vitest run --config vitest.smoke.config.ts tests/smoke/vite-client-injection.test.ts",
"test:unit": "vitest run tests/unit",
"test:watch": "vitest",
"typecheck": "vue-tsc --noEmit -p packages/client/tsconfig.json",
"zip": "pnpm run zip:chrome",
"zip:chrome": "pnpm --filter @vue/devtools-chrome build && node scripts/chrome-extension-zip.mjs"
},
"devDependencies": {
"@clack/prompts": "catalog:",
"@types/chrome": "catalog:",
"@types/node": "catalog:",
"@vitejs/devtools": "catalog:",
"@vitejs/plugin-vue": "catalog:",
"@vitest/coverage-v8": "catalog:",
"@vue/test-utils": "catalog:",
"archiver": "catalog:",
"bumpp": "catalog:",
"colorjs.io": "catalog:",
"happy-dom": "catalog:",
"nano-staged": "catalog:",
"picocolors": "catalog:",
"pinia": "catalog:",
"pkg-pr-new": "catalog:",
"playwright": "catalog:",
"simple-git-hooks": "catalog:",
"taze": "catalog:",
"typescript": "catalog:",
"verkit": "catalog:",
"vite": "catalog:",
"vite-plus": "catalog:",
"vitest": "catalog:",
"vue": "catalog:",
"vue-tsc": "catalog:"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && pnpm exec nano-staged"
},
"nano-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs,mts,cts,vue}": [
"vp lint --fix",
"vp fmt"
],
"*.{json,jsonc,json5,yaml,yml,md,mdx,html,css,scss,sass,less,graphql,gql,toml}": "vp fmt"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@12.6.0"
}