-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.85 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
93
94
95
96
97
98
99
100
101
102
{
"name": "clawpatch-ui",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "out/main/index.js",
"scripts": {
"dev": "node scripts/ensure-electron.mjs && electron-vite dev",
"build": "electron-vite build",
"dist": "pnpm build && electron-builder",
"preview": "node scripts/ensure-electron.mjs && electron-vite preview",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"lint": "oxlint --disable-nested-config --report-unused-disable-directives",
"fmt": "oxfmt --disable-nested-config",
"fmt:check": "oxfmt --disable-nested-config --check",
"update": "pnpm up -i -L && node scripts/ensure-electron.mjs",
"check": "turbo run typecheck lint fmt test",
"check:ci": "turbo run typecheck lint fmt:check test build",
"clean": "rm -rf out release .turbo",
"ensure:electron": "node scripts/ensure-electron.mjs",
"knip": "knip"
},
"dependencies": {
"@effect/platform-node": "beta",
"@pierre/diffs": "^1.2.12",
"@tanstack/react-query": "^5.101.3",
"@tanstack/react-router": "^1.170.18",
"@tanstack/react-virtual": "^3.14.7",
"effect": "beta",
"lucide-react": "^1.25.0",
"pino": "^10.3.1",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@effect/vitest": "beta",
"@testing-library/jest-dom": "^7.0.0",
"@testing-library/react": "^16.3.0",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"clawpatch": "0.7.0",
"electron": "^43.1.1",
"electron-builder": "^26.15.3",
"electron-vite": "^5.0.0",
"jsdom": "^29.1.1",
"knip": "^6.27.0",
"oxfmt": "^0.59.0",
"oxlint": "^1.74.0",
"turbo": "^2.10.5",
"typescript": "^7.0.2",
"vite": "^8.1.5",
"vitest": "^4.1.10"
},
"engines": {
"node": "24.18.0"
},
"packageManager": "pnpm@11.15.1+sha512.81350b07e53c9538a02f1f2303b4290fa2d7be04e56e2a970c4cc4b417dc761de196edabd49d55c7dc9580db81007c44143e4e3d7e462b3000d23c255122d065",
"build": {
"appId": "ai.clawpatch.ui",
"productName": "Clawpatch UI",
"directories": {
"output": "release"
},
"files": [
"out/**",
"package.json"
],
"extraResources": [
{
"from": "resources/build-assets/icons/icon-512.png",
"to": "icon.png"
}
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "resources/build-assets/icon.icns",
"identity": null,
"target": [
"dmg",
"zip"
]
},
"win": {
"icon": "resources/build-assets/icon.ico",
"target": [
"nsis"
]
},
"linux": {
"category": "Development",
"icon": "resources/build-assets/icons",
"target": [
"AppImage"
]
}
},
"productName": "Clawpatch UI"
}