-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.79 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
{
"name": "ai-devteam-node",
"version": "1.0.3",
"description": "AI DevTeam automation system using Claude Code and Gemini CLI for terminal-based development",
"main": "dist/index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "tsc && tsc-alias",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "PATH=~/.npm-global/bin:$PATH jest",
"test:unit": "PATH=~/.npm-global/bin:$PATH jest tests/unit",
"test:integration": "PATH=~/.npm-global/bin:$PATH jest tests/integration",
"test:watch": "PATH=~/.npm-global/bin:$PATH jest --watch",
"test:coverage": "PATH=~/.npm-global/bin:$PATH jest --coverage",
"lint": "eslint src tests --ext .ts",
"lint:fix": "eslint src tests --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"keywords": [
"ai",
"automation",
"development",
"github",
"claude",
"gemini"
],
"author": "",
"license": "ISC",
"type": "commonjs",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@octokit/request-error": "^7.0.0",
"@octokit/rest": "^22.0.0",
"commander": "^14.0.0",
"dotenv": "^17.2.0",
"simple-git": "^3.28.0",
"tsconfig-paths": "^4.2.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.38.0",
"@typescript-eslint/parser": "^8.38.0",
"eslint": "^9.31.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.1",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.3",
"typescript": "^5.9.2"
}
}