forked from qwibitai/nanoclaw
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.64 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.64 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@boxlite-ai/agentlite",
"version": "1.2.25",
"description": "Personal Claude assistant. Lightweight, secure, customizable.",
"files": [
"dist",
"container/Dockerfile",
"container/build.sh",
"container/skills",
"container/agent-runner/src",
"container/agent-runner/package.json",
"container/agent-runner/package-lock.json",
"container/agent-runner/tsconfig.json",
"README.md",
"LICENSE"
],
"type": "module",
"main": "dist/api/sdk.js",
"bin": {
"agentlite": "dist/cli.js"
},
"exports": {
".": {
"types": "./dist/api/sdk.d.ts",
"import": "./dist/api/sdk.js",
"require": "./dist/api/sdk.cjs",
"default": "./dist/api/sdk.js"
},
"./channels/telegram": {
"types": "./dist/api/channels/telegram.d.ts",
"import": "./dist/api/channels/telegram.js",
"default": "./dist/api/channels/telegram.js"
},
"./acp/peers": {
"types": "./dist/api/acp/peers.d.ts",
"import": "./dist/api/acp/peers.js",
"default": "./dist/api/acp/peers.js"
}
},
"scripts": {
"build": "tsc && tsup",
"start": "node dist/cli.js",
"dev": "tsx src/cli.ts | pino-pretty",
"typecheck": "tsc --noEmit",
"format": "prettier --write \"src/**/*.ts\"",
"format:fix": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"prepare": "bash -c 'if bash ./scripts/check-is-in-git-install.sh; then npm run build; else husky || true; fi'",
"setup": "tsx setup/index.ts",
"auth": "tsx src/whatsapp-auth.ts",
"test:e2e:tasks": "tsx scripts/test-task-sdk-e2e.ts",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@agentclientprotocol/sdk": "^0.19.0",
"@boxlite-ai/boxlite": "^0.4.3",
"better-sqlite3": "^11.8.1",
"cron-parser": "^5.5.0",
"grammy": "^1.39.3",
"nanoid": "^3.3.11",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"peerDependencies": {
"@onecli-sh/sdk": "^0.2.0"
},
"peerDependenciesMeta": {
"@onecli-sh/sdk": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.35.0",
"eslint-plugin-no-catch-all": "^1.1.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.35.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20"
}
}