-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json.bak
More file actions
34 lines (34 loc) · 1.08 KB
/
package.json.bak
File metadata and controls
34 lines (34 loc) · 1.08 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
{
"name": "chittyid-mothership",
"version": "1.0.0",
"description": "ChittyID Mothership - Management System for ChittyIDs from id.chitty.cc Service",
"main": "src/index.js",
"type": "module",
"scripts": {
"dev": "wrangler dev",
"build": "wrangler build",
"deploy": "wrangler deploy",
"deploy:pages": "wrangler pages deploy dist --project-name=chittyid-mothership",
"tail": "wrangler tail",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "vitest run",
"test:integration": "node tests/integration.js",
"setup:vectorize": "wrangler vectorize create chittyid-routing --dimensions=384 --metric=cosine",
"setup:agents": "echo 'AI Agents configured'",
"setup": "npm run setup:vectorize && npm run setup:agents"
},
"dependencies": {
"@cloudflare/ai": "^1.0.0",
"@cloudflare/workers-types": "^4.20250924.0",
"simple-peer": "^9.11.1",
"socket.io-client": "^4.5.0"
},
"devDependencies": {
"typescript": "^5.0.0",
"vitest": "^1.0.0",
"wrangler": "^3.0.0"
},
"engines": {
"node": ">=18"
}
}