-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.54 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
{
"name": "linear-brain",
"version": "1.0.0",
"description": "Manage your Linear board with AI — no MCP required. Human-approval queue for all write operations.",
"module": "src/index.ts",
"type": "module",
"license": "MIT",
"author": "Luke Hawkins",
"keywords": [
"linear",
"linear-app",
"project-management",
"ai",
"claude",
"mcp-alternative",
"approval-queue",
"design-system",
"bun",
"hono"
],
"repository": {
"type": "git",
"url": "https://github.com/LukeHawkins/linear-brain"
},
"homepage": "https://github.com/LukeHawkins/linear-brain#readme",
"bugs": {
"url": "https://github.com/LukeHawkins/linear-brain/issues"
},
"scripts": {
"dev": "concurrently -n api,web -c blue,green \"bun run --watch src/index.ts\" \"cd web && bunx vite\"",
"build:web": "cd web && bunx vite build",
"start": "bun run build:web && bun run src/index.ts",
"test": "bun test",
"screenshots:setup": "bunx playwright install chromium",
"screenshots": "bun scripts/run-screenshots.ts"
},
"devDependencies": {
"@types/bun": "latest",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"concurrently": "^9.2.1",
"playwright": "^1.59.1",
"vite": "^8.0.8"
},
"peerDependencies": {
"typescript": "^5.9.3"
},
"dependencies": {
"@linear/sdk": "^77.0.0",
"antd": "^6.3.6",
"hono": "^4.12.14",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.1",
"zod": "^4.3.6"
}
}