-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.33 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.33 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
{
"name": "ridhwan",
"version": "1.0.0",
"description": "The Enterprise Trust & Commerce Mesh for Autonomous Agents",
"main": "dist/src/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/src/index.js",
"dev": "ts-node src/index.ts",
"dev:dashboard": "cd src/dashboard && next dev -p 3001",
"dev:all": "concurrently \"npm run dev\" \"npm run dev:dashboard\"",
"db:init": "ts-node src/policy-engine/db/init.ts",
"heartbeat": "ts-node src/agent/heartbeat/scheduler.ts",
"demo": "ts-node demo/run-demo.ts",
"scenario": "ts-node demo/run-scenarios.ts",
"scenario:all": "ts-node demo/run-scenarios.ts --all",
"moltbook:register": "ts-node scripts/register-moltbook.ts",
"moltbook:post": "ts-node scripts/post-to-lablab.ts",
"test": "jest",
"lint": "eslint src/"
},
"dependencies": {
"better-sqlite3": "^11.0.0",
"chalk": "^4.1.2",
"concurrently": "^8.2.0",
"cron": "^3.1.0",
"dotenv": "^16.4.0",
"express": "^4.18.0",
"node-fetch": "^2.7.0",
"uuid": "^9.0.0",
"winston": "^3.11.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"@types/node-fetch": "^2.6.0",
"@types/uuid": "^9.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
}
}