forked from proma-ai/Proma
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.32 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
{
"name": "proma",
"version": "0.1.1",
"description": "The next gen ai software with general agents",
"type": "module",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "bun run --filter='@proma/electron' dev",
"electron:dev": "bun run --filter='@proma/electron' dev",
"electron:build": "bun run --filter='@proma/electron' build",
"electron:start": "bun run --filter='@proma/electron' start",
"dist:mac": "bun run --filter='@proma/electron' dist:mac",
"build": "bun run --filter='*' build",
"typecheck": "bun run --filter='*' typecheck",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/dompurify": "^3.2.0",
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"dompurify": "^3.4.2",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"jotai": "^2.17.1"
},
"overrides": {
"@earendil-works/pi-agent-core": "0.84.2",
"@earendil-works/pi-ai": "0.84.2",
"@earendil-works/pi-coding-agent": "0.84.2",
"@earendil-works/pi-tui": "0.84.2"
},
"patchedDependencies": {
"@earendil-works/pi-ai@0.84.2": "patches/@earendil-works%2Fpi-ai@0.84.2.patch",
"node-pty@1.1.0": "patches/node-pty@1.1.0.patch"
}
}