-
Notifications
You must be signed in to change notification settings - Fork 317
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"build": "cp README.md packages/react-grab/README.md && turbo run build --filter=@react-grab/cli --filter=react-grab --filter=grab --filter=@react-grab/mcp",
"dev": "turbo run dev --filter=react-grab",
"test": "turbo run test",
"test:cli": "turbo run test --filter=@react-grab/cli",
"typecheck": "pnpm --filter react-grab typecheck",
"lint": "vp lint",
"lint:fix": "vp lint --fix",
"format": "vp fmt",
"format:check": "vp fmt --check",
"check": "vp check",
"extension:dev": "pnpm --filter web-extension dev",
"extension:build": "pnpm --filter web-extension build",
"changeset": "changeset",
"version": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@types/node": "^25.5.0",
"@voidzero-dev/vite-plus-core": "^0.1.12",
"turbo": "^2.9.3",
"typescript": "^5.9.3",
"vite-plus": "^0.1.12"
},
"engines": {
"node": ">=22",
"pnpm": ">=8"
},
"packageManager": "pnpm@10.24.0",
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp",
"spawn-sync",
"unrs-resolver"
],
"overrides": {
"vite": "npm:@voidzero-dev/vite-plus-core",
"vitest": "npm:@voidzero-dev/vite-plus-test"
}
}
}