-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.48 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.48 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
{
"private": true,
"homepage": "https://github.com/ohbug-org/ohbug#readme",
"bugs": {
"url": "https://github.com/ohbug-org/ohbug/issues"
},
"license": "Apache-2.0",
"author": {
"name": "xinyao",
"email": "hi@xinyao.me"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ohbug-org/ohbug.git"
},
"funding": "https://github.com/sponsors/xinyao27",
"type": "module",
"scripts": {
"version": "changeset && changeset version",
"publish": "pnpm run build && changeset publish",
"postinstall": "pnpm run build",
"dev": "pnpm run build && pnpm -r --parallel run dev",
"build": "vp run --filter './packages/*' --filter '!./packages/ohbug-unplugin' build && pnpm --filter @ohbug/unplugin exec vp pack",
"check": "vp check --fix",
"lint": "vp lint --fix",
"fmt": "vp fmt",
"test": "vp test",
"up": "taze major -Ir",
"prepare": "vp config"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@testing-library/jest-dom": "^6.9.1",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"jsdom": "^29.0.1",
"taze": "latest",
"typescript": "~6.0.2",
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vite-plus": "latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@^0.1.14"
},
"packageManager": "pnpm@10.33.0",
"pnpm": {
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core@latest",
"vitest": "npm:@voidzero-dev/vite-plus-test@latest"
}
}
}