-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "gitlin",
"version": "0.1.0",
"description": "AI-powered GitHub bot that creates Linear issues from code reviews, PRs, and commits",
"main": "dist/index.js",
"type": "module",
"scripts": {
"setup": "node scripts/setup.js",
"build": "tsc",
"dev": "tsx src/index.ts",
"tui": "tsx src/tui/index.tsx",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts,.tsx",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"format:check": "prettier --check 'src/**/*.{ts,tsx}'"
},
"keywords": [
"github",
"linear",
"ai",
"automation",
"developer-tools",
"project-management"
],
"author": "Paper Diamond",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"@inkjs/ui": "^2.0.0",
"@linear/sdk": "^26.0.0",
"@octokit/rest": "^21.0.2",
"dotenv": "^16.6.1",
"ink": "^6.5.1",
"react": "^19.2.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/node": "^22.10.2",
"@types/react": "^19.2.7",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.48.1",
"vitest": "^2.1.8"
}
}