-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.62 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.62 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
97
98
99
100
101
102
{
"name": "openoctopus",
"version": "2026.3.10",
"description": "Realm-native personal life assistant Agent system",
"keywords": [
"agent",
"ai",
"assistant",
"cli",
"llm",
"octopus",
"realm",
"summon"
],
"homepage": "https://github.com/openoctopus/openoctopus",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/openoctopus/openoctopus.git"
},
"bin": {
"openoctopus": "openoctopus.mjs",
"tentacle": "openoctopus.mjs"
},
"files": [
"openoctopus.mjs",
"dist/",
"realms/",
"README.md",
"LICENSE"
],
"type": "module",
"main": "dist/gateway.mjs",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "pnpm -r build",
"build:dist": "tsdown",
"chat": "tsx packages/tentacle/src/cli.ts chat",
"check": "pnpm typecheck && pnpm lint && pnpm format:check",
"clean": "pnpm -r exec rm -rf dist",
"dashboard:build": "pnpm --filter @openoctopus/dashboard build",
"dashboard:dev": "pnpm --filter @openoctopus/dashboard dev",
"dev": "pnpm --filter @openoctopus/ink dev",
"doctor": "pnpm check && pnpm test:unit",
"format": "oxfmt .",
"format:check": "oxfmt --check .",
"knip": "knip",
"lint": "oxlint --ignore-pattern '.claude/**' .",
"prepack": "pnpm build && pnpm build:dist",
"restart": "pnpm build && tsx packages/tentacle/src/cli.ts start",
"start": "tsx packages/tentacle/src/cli.ts start",
"tentacle": "tsx packages/tentacle/src/cli.ts",
"test": "vitest",
"test:e2e": "playwright test",
"test:integration": "vitest --project integration",
"test:system": "vitest --project system",
"test:unit": "vitest --project unit",
"typecheck": "tsc --build"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"better-sqlite3": "^11.8.0",
"citty": "^0.1.6",
"consola": "^3.4.0",
"express": "^5.1.0",
"grammy": "^1.35.0",
"picocolors": "^1.1.1",
"ws": "^8.18.0",
"yaml": "^2.7.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/better-sqlite3": "^7.6.12",
"@types/express": "^5.0.0",
"@types/node": "^22.13.0",
"@types/ws": "^8.5.14",
"knip": "^5.44.0",
"oxfmt": "^0.36.0",
"oxlint": "^1.51.0",
"tsdown": "^0.21.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@10.30.2",
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3",
"esbuild"
],
"overrides": {
"tough-cookie": ">=5.0.0",
"tar": ">=7.0.0"
}
}
}