forked from cyrusagents/cyrus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.29 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.29 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
{
"name": "cyrus-monorepo",
"version": "1.0.1",
"private": true,
"description": "Monorepo for Cyrus - Linear Claude Agent integration",
"packageManager": "pnpm@10.13.1",
"type": "module",
"scripts": {
"build": "pnpm -r --filter='!@cyrus/electron' build",
"dev": "pnpm -r --parallel dev",
"test": "pnpm -r test",
"lint": "biome check",
"format": "biome check --write --unsafe",
"test:packages": "pnpm --filter './packages/*' test",
"test:packages:run": "pnpm --filter './packages/*' test:run",
"test:apps": "pnpm --filter './apps/*' test",
"typecheck": "pnpm -r typecheck",
"prepare": "husky"
},
"keywords": [
"linear",
"claude",
"linear-agent",
"cyrus",
"anthropic",
"ai",
"agent",
"monorepo"
],
"author": "Ceedar",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ceedaragents/cyrus"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"husky": "^9.1.7",
"lint-staged": "^16.1.6",
"typescript": "^5.3.3"
},
"dependencies": {
"@linear/sdk": "60.0.0"
},
"pnpm": {
"overrides": {
"jws": ">=4.0.1",
"@modelcontextprotocol/sdk": ">=1.25.2",
"semver": ">=7.5.2",
"qs": ">=6.14.1",
"vite": ">=7.1.11",
"zod": "4.3.6"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json}": [
"biome check --write --unsafe"
]
}
}