-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.36 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
{
"name": "stateark",
"version": "0.5.2",
"mcpName": "io.github.Askrion/stateark",
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"start": "tsx src/server.ts",
"stdio": "tsx src/stdio.ts",
"build": "tsc",
"typecheck": "tsc --noEmit",
"test": "node test/smoke.mjs",
"install-claude-desktop": "node bin/stateark.mjs setup",
"update": "npm install && npm run build && node bin/stateark.mjs setup",
"prepublishOnly": "npm run typecheck && npm test && npm run build",
"setup": "node bin/stateark.mjs setup",
"report": "node bin/stateark.mjs report"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"@supabase/supabase-js": "~2.57.4",
"dotenv": "^17.2.2",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.3.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2"
},
"engines": {
"node": ">=20"
},
"description": "Local-first version control for AI work. Savepoint and resume your project state across chats and LLMs.",
"license": "Elastic-2.0",
"keywords": [
"mcp",
"model-context-protocol",
"claude",
"llm",
"context",
"savepoint",
"local-first"
],
"bin": {
"stateark": "bin/stateark.mjs"
},
"files": [
"dist",
"bin",
"README.md",
"INSTALL.md",
"LICENSE",
"CHANGELOG.md",
"supabase"
]
}