-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "@eudalabs/aic",
"version": "1.0.2",
"description": "AI-powered CLI tool for git commit summaries",
"main": "dist/index.js",
"bin": {
"aic": "dist/index.js"
},
"author": "byigitt",
"license": "MIT",
"type": "commonjs",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"lint": "eslint src/**/*.ts",
"test": "jest",
"clean": "rimraf dist",
"prepare": "npm run build"
},
"dependencies": {
"clipboardy": "^4.0.0",
"commander": "^11.1.0",
"ora": "8.1.1"
},
"devDependencies": {
"@types/commander": "^2.12.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
}
}