-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 859 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 859 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": "@agent-comms/core",
"version": "0.1.1",
"author": "Shay Palachy Affek",
"private": false,
"type": "module",
"bin": {
"agent-comms": "scripts/agent-comms.mjs"
},
"scripts": {
"dev": "vite --host 127.0.0.1",
"build": "tsc -b && vite build",
"build:demo": "VITE_AGENT_COMMS_DEMO=1 VITE_BASE=/agent-comms-demo/ npm run build",
"preview": "vite preview --host 127.0.0.1",
"test": "vitest run",
"check": "tsc -b"
},
"dependencies": {},
"devDependencies": {
"@vitejs/plugin-react": "^5.0.0",
"lucide-react": "^0.468.0",
"pg": "^8.21.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.8.0",
"vite": "^7.0.0",
"@types/node": "^22.10.0",
"@types/pg": "^8.20.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"vitest": "^4.1.7"
}
}