-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.69 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
{
"name": "@storybloq/storybloq",
"version": "1.13.0",
"license": "PolyForm-Shield-1.0.0",
"description": "Project memory for Claude Code and Codex. Storybloq stores tickets, issues, handovers, and lessons in a .story/ folder inside your repo so every session starts where the last one left off. Pairs with the Storybloq Mac app on the App Store.",
"homepage": "https://storybloq.com",
"repository": {
"type": "git",
"url": "git+https://github.com/Storybloq/storybloq.git"
},
"bugs": {
"url": "https://github.com/Storybloq/storybloq/issues",
"email": "shayegh@me.com"
},
"keywords": [
"storybloq",
"claude-code",
"codex",
"openai-codex",
"ai-development",
"session-continuity",
"project-management",
"mcp",
"cli",
"agentic-development"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"storybloq": "dist/cli.js",
"storybloq-presence": "dist/presence.js"
},
"files": [
"dist",
"src/skill",
"README.md",
"NOTICE"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsup --watch",
"prepublishOnly": "npm run build && npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@storybloq/lenses": "^0.4.0",
"canonicalize": "^3.0.0",
"proper-lockfile": "^4.1.2",
"yargs": "^17",
"zod": "^3"
},
"devDependencies": {
"@types/node": "^20",
"@types/proper-lockfile": "^4.1.4",
"@types/yargs": "^17",
"tsup": "^8",
"tsx": "^4.21.0",
"typescript": "^5",
"vitest": "^3"
}
}