-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.79 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.79 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
{
"name": "pokoclaw",
"version": "0.1.0",
"description": "Pokoclaw is a personal AI assistant focused on observable, controllable, long-running task execution.",
"private": true,
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/danielwpz/pokoclaw.git"
},
"homepage": "https://github.com/danielwpz/pokoclaw#readme",
"bugs": {
"url": "https://github.com/danielwpz/pokoclaw/issues"
},
"keywords": [
"ai-agent",
"assistant",
"automation",
"lark",
"feishu",
"typescript"
],
"engines": {
"node": ">=20"
},
"type": "module",
"packageManager": "pnpm@10.15.0",
"scripts": {
"dev": "tsx watch src/main.ts",
"start": "pnpm run doctor && tsx src/main.ts",
"doctor": "bash scripts/doctor.sh",
"meditation:backtest": "tsx src/script/meditation-backtest.ts",
"meditation:episode-study": "tsx src/script/meditation-episode-study.ts",
"skills:sync-a2ui": "tsx src/script/sync-a2ui-builtin-skill.ts",
"build": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"lint": "biome check --error-on-warnings .",
"format": "biome check --write --error-on-warnings .",
"test": "vitest run --passWithNoTests",
"test:integration": "vitest run --passWithNoTests --config vitest.integration.config.ts",
"test:integration:llm": "vitest run --config vitest.integration.config.ts tests/integration/llm",
"linux:docker": "scripts/linux-docker.sh",
"linux:preflight": "scripts/linux-docker.sh preflight",
"linux:preflight:local-sandbox": "scripts/linux-docker.sh preflight:local-sandbox",
"linux:shell": "scripts/linux-docker.sh shell",
"linux:shell:local-sandbox": "scripts/linux-docker.sh shell:local-sandbox",
"preflight": "pnpm build && pnpm format && pnpm lint && pnpm test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx,cjs,mjs,json}": [
"biome check --write --no-errors-on-unmatched --error-on-warnings"
]
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"drizzle-kit": "^0.31.10",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
},
"dependencies": {
"@danielwpz/sandbox-runtime": "0.0.43-pokeclaw.3",
"@larksuiteoapi/node-sdk": "^1.60.0",
"@mariozechner/pi-agent-core": "0.70.2",
"@mariozechner/pi-ai": "0.70.2",
"@modelcontextprotocol/sdk": "^1.29.0",
"@sinclair/typebox": "^0.34.48",
"@tavily/core": "^0.7.2",
"ajv": "^8.20.0",
"better-sqlite3": "^12.8.0",
"croner": "^10.0.1",
"drizzle-orm": "^0.45.1",
"lark-a2ui-renderer": "0.1.2",
"openai": "6.26.0",
"toml": "^3.0.0",
"tree-sitter-bash": "^0.25.1",
"web-tree-sitter": "^0.26.8"
}
}