-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.65 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 3.65 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
105
106
107
108
109
110
{
"name": "volute",
"version": "0.56.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/pages/dist/ui/",
"packages/extensions/pages/skills/",
"packages/extensions/intentions/dist/ui/",
"packages/extensions/intentions/skills/"
],
"scripts": {
"dev": "tsx src/cli.ts",
"build": "npm run build:ext && tsup && cp -r skills dist/skills && npm run build:web",
"ext-theme": "npm run build:ext-theme --workspace=packages/ui && cp packages/ui/dist/ext-theme.css packages/web/public/ext-theme.css",
"build:ext": "npm run ext-theme && npm run build:ui --workspace=packages/extensions/pages && npm run build:ui --workspace=packages/extensions/intentions",
"build:web": "npm run ext-theme && npm run build:ui --workspace=packages/web",
"dev:web": "npm run ext-theme && 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' ! -name 'upgrade-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:upgrade": "node --import tsx --import ./test/setup.ts --test --test-force-exit --test-concurrency=1 test/upgrade-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",
"knip": "knip --workspace packages/web --include files",
"prepare": "lefthook install",
"prepublishOnly": "npm run build",
"db:generate": "drizzle-kit generate",
"db:migrate": "drizzle-kit migrate"
},
"dependencies": {
"@anthropic-ai/sandbox-runtime": "^0.0.66",
"@earendil-works/pi-ai": "0.80.6",
"@hono/node-server": "^2.0.8",
"@hono/zod-validator": "^0.9.0",
"@libsql/client": "^0.17.4",
"@slack/bolt": "^4.7.3",
"adm-zip": "^0.6.0",
"bcryptjs": "^3.0.3",
"cron-parser": "^5.6.2",
"discord.js": "^14.26.5",
"drizzle-orm": "^0.45.2",
"hono": "^4.12.30",
"isomorphic-dompurify": "^3.19.0",
"libsql": "^0.5.29",
"replicate": "^1.4.0",
"sharp": "^0.35.3",
"telegraf": "^4.16.3",
"undici": "^7.28.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.217",
"@biomejs/biome": "2.5.5",
"@earendil-works/pi-coding-agent": "0.80.6",
"@sveltejs/vite-plugin-svelte": "^7.2.0",
"@types/adm-zip": "^0.5.8",
"@types/node": "^26.1.1",
"dompurify": "3.4.12",
"drizzle-kit": "^0.31.10",
"knip": "^6.26.0",
"lefthook": "^2.1.10",
"marked": "^18.0.6",
"svelte": "^5.56.4",
"svelte-check": "4.7.3",
"tsup": "^8.5.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"vite": "^8.1.4"
},
"overrides": {
"esrap": "2.2.11"
}
}