-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.59 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.59 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
{
"name": "botmaker",
"version": "1.0.2",
"description": "Web UI for creating and managing OpenClaw bots",
"author": "Jeff Garzik",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jgarzik/botmaker.git"
},
"homepage": "https://github.com/jgarzik/botmaker#readme",
"bugs": {
"url": "https://github.com/jgarzik/botmaker/issues"
},
"keywords": [
"chatbot",
"ai",
"docker",
"telegram",
"discord",
"openai",
"anthropic"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:dashboard": "cd dashboard && npm run build",
"build:all": "npm run build && npm run build:dashboard",
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@fastify/basic-auth": "^6.0.0",
"@fastify/helmet": "^13.0.2",
"@fastify/rate-limit": "^10.3.0",
"@fastify/static": "^8.0.0",
"better-sqlite3": "^11.6.0",
"dockerode": "^4.0.4",
"dotenv": "^16.4.5",
"fastify": "^5.1.0",
"uuid": "^11.0.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/better-sqlite3": "^7.6.12",
"@types/dockerode": "^3.3.33",
"@types/node": "^22.10.0",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.16.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.18.0",
"vitest": "^2.1.0"
},
"engines": {
"node": ">=20.0.0"
}
}