-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 865 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 865 Bytes
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
{
"name": "proma",
"version": "0.1.0",
"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",
"build": "bun run --filter='*' build",
"typecheck": "bun run --filter='*' typecheck",
"test": "bun test"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"typescript": "^5.0.0"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"jotai": "^2.17.1"
}
}