-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.28 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.28 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "reploid",
"version": "0.1.0",
"description": "Browser-Native AI Agent with Recursive Self-Improvement",
"main": "server/proxy.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/clocksmith/reploid.git"
},
"homepage": "https://github.com/clocksmith/reploid",
"bin": {
"reploid": "./bin/reploid-cli.ts",
"reploid-config": "./bin/reploid-config"
},
"scripts": {
"start": "npx tsx bin/reploid-cli.ts start",
"start:signaling": "node server/reploid-signaling.js",
"test": "npx tsx bin/reploid-cli.ts test",
"test:unit": "npx tsx bin/reploid-cli.ts test --unit",
"test:integration": "npx tsx bin/reploid-cli.ts test --integration",
"test:e2e": "npx tsx bin/reploid-cli.ts test --e2e",
"test:watch": "npx tsx bin/reploid-cli.ts test --watch",
"test:coverage": "npx tsx bin/reploid-cli.ts test --coverage",
"test:ci": "vitest run --coverage --reporter=json",
"bench": "npx tsx bin/reploid-cli.ts bench",
"debug": "npx tsx bin/reploid-cli.ts debug",
"cli": "node bin/reploid-cli.js",
"build:cloud-access": "node scripts/build-reploid-cloud-access.js",
"build:genesis": "node scripts/build-genesis-manifest.js",
"build:blueprints": "node scripts/build-blueprint-registry.js",
"build:module-registry": "node scripts/build-module-registry.js",
"build:vfs-manifest": "node scripts/build-vfs-manifest.js",
"deploy:pool-env": "node scripts/print-pool-env.js",
"verify:pool": "node scripts/verify-pool-production.js",
"smoke:pool": "node scripts/pool-browser-smoke.js",
"verify:module-system": "node scripts/verify-module-system.js"
},
"keywords": [
"reploid",
"browser",
"ai",
"agent",
"rsi",
"self-improvement"
],
"author": "",
"license": "MIT",
"dependencies": {
"dotenv": "^16.3.1",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"ws": "^8.18.3"
},
"optionalDependencies": {
"@anthropic-ai/sdk": "^0.16.1",
"@google/generative-ai": "^0.1.3",
"firebase-admin": "^13.10.0",
"openai": "^4.20.1"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"concurrently": "^8.0.0",
"happy-dom": "^20.0.11",
"nodemon": "^3.0.1",
"vitest": "^4.0.16"
},
"engines": {
"node": ">=22.0.0"
}
}