-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.81 KB
/
package.json
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": "commit",
"description": "generate conventional commits using openai based on git diff",
"version": "0.0.1",
"author": "wajeht",
"license": "MIT",
"main": "./dist/src/server.js",
"scripts": {
"start": "node --no-warnings ./dist/src/server.js",
"dev": "tsx watch --no-warnings --clear-screen=false ./src/server.ts",
"dev:debug": "node --no-warnings --inspect --import tsx ./src/server.ts",
"build": "tsc",
"update:deps": "npx npm-check -u",
"check:deps": "npx depcheck",
"test": "node --no-warnings --import tsx --test ./src/**/*test.ts",
"test:only": "node --no-warnings --import tsx --test --test-only ./src/**/*test.ts",
"test:watch": "node --no-warnings --import tsx --test --watch ./src/**/*test.ts",
"test:coverage": "node --no-warnings --import tsx --test --experimental-test-coverage ./src/**/*test.ts",
"lint:check": "eslint .",
"lint": "eslint --fix --cache .",
"format:check": "prettier --check .",
"format:verbose": "prettier --write --cache .",
"format": "prettier --write --cache . > /dev/null",
"prepare": "husky"
},
"keywords": [
"commit",
"openai",
"conventional",
"claudeai"
],
"engines": {
"node": ">=22.3.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.27.3",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "5.0.0",
"express-rate-limit": "^7.3.1",
"fastq": "^1.17.1",
"helmet": "^7.1.0",
"openai": "^4.61.0",
"typescript": "^5.6.2"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"prettier": "^3.3.2",
"tsx": "^4.19.1"
}
}