-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 3.38 KB
/
package.json
File metadata and controls
104 lines (104 loc) · 3.38 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
103
104
{
"name": "volute",
"version": "0.39.0",
"description": "CLI for creating and managing self-modifying AI minds powered by the Claude Agent SDK",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mimsy/volute.git"
},
"keywords": [
"cli",
"ai",
"minds",
"claude",
"anthropic"
],
"workspaces": [
"packages/*",
"packages/extensions/*"
],
"engines": {
"node": ">=24"
},
"bin": {
"volute": "dist/cli.js"
},
"exports": {
".": "./dist/cli.js",
"./api": {
"types": "./dist/api.d.ts"
}
},
"files": [
"dist/",
"drizzle/",
"templates/",
"packages/extensions/notes/dist/ui/",
"packages/extensions/notes/skills/",
"packages/extensions/pages/dist/ui/",
"packages/extensions/pages/skills/",
"packages/extensions/plan/dist/ui/",
"packages/extensions/plan/skills/"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "npm run build:ext && tsup && cp -r skills dist/skills && npm run build:web",
"build:ext": "npm run build:ext-theme --workspace=packages/ui && cp packages/ui/dist/ext-theme.css packages/web/public/ext-theme.css && npm run build:ui --workspace=packages/extensions/notes && npm run build:ui --workspace=packages/extensions/pages && npm run build:ui --workspace=packages/extensions/plan",
"build:web": "npm run build:ui --workspace=packages/web",
"dev:web": "npm run dev --workspace=packages/web",
"test": "node --import tsx --import ./test/setup.ts --test --test-force-exit --test-concurrency=4 $(find test -name '*.test.ts' ! -name 'daemon-e2e.test.ts' | sort)",
"test:e2e": "node --import tsx --import ./test/setup.ts --test --test-force-exit --test-concurrency=1 test/daemon-e2e.test.ts",
"test:all": "npm test && npm run test:e2e",
"lint": "biome check src/ test/",
"lint:fix": "biome check --write src/ test/",
"format": "biome format --write src/ test/",
"typecheck": "tsc --noEmit",
"typecheck:templates": "tsx scripts/typecheck-templates.ts",
"lint:templates": "biome check templates/",
"typecheck:web": "svelte-check --tsconfig packages/web/tsconfig.json",
"prepare": "lefthook install",
"prepublishOnly": "npm run build",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.46",
"@hono/node-server": "^1.19.12",
"@hono/zod-validator": "^0.7.6",
"@libsql/client": "^0.17.2",
"@mariozechner/pi-ai": "^0.64.0",
"@slack/bolt": "^4.6.0",
"adm-zip": "^0.5.17",
"bcryptjs": "^3.0.3",
"cron-parser": "^5.5.0",
"discord.js": "^14.26.0",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.9",
"libsql": "^0.5.29",
"replicate": "^1.4.0",
"telegraf": "^4.16.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.89",
"@biomejs/biome": "2.4.10",
"@mariozechner/pi-coding-agent": "^0.64.0",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/adm-zip": "^0.5.8",
"@types/bcryptjs": "^3.0.0",
"@types/dompurify": "^3.2.0",
"@types/node": "^25.5.0",
"dompurify": "^3.3.3",
"drizzle-kit": "^0.31.10",
"lefthook": "^2.1.4",
"marked": "^17.0.5",
"sharp": "^0.34.5",
"svelte": "^5.55.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vite": "^8.0.3"
}
}