-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.49 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
{
"name": "dev-mate-cli",
"version": "1.0.3",
"description": "command line tool using LLMs for code documentation",
"main": "index.ts",
"scripts": {
"start": "node dist/src/index.js",
"build": "tsc",
"dev": "ts-node src/index.ts",
"check": "biome check",
"check:fix": "biome check --fix",
"check:changed": "biome check --changed",
"format": "biome format",
"format:changed": "biome format --changed",
"format:fix": "biome format --write",
"lint": "biome lint",
"lint:changed": "biome lint --changed",
"lint:fix": "biome lint --fix",
"test": "jest -c jest.config.js --runInBand --",
"test:watch": "jest -c jest.config.js --runInBand --watch --",
"coverage": "jest -c jest.config.js --runInBand --coverage"
},
"bin": {
"dev-mate-cli": "./dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mayank-Pareek/dev-mate-cli.git"
},
"keywords": [
"cli"
],
"author": "Mayank Kumar",
"license": "MIT",
"bugs": {
"url": "https://github.com/mayank-Pareek/dev-mate-cli/issues"
},
"homepage": "https://github.com/mayank-Pareek/dev-mate-cli#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.5.4",
"jest": "^29.7.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
},
"dependencies": {
"@types/jest": "^29.5.14",
"commander": "^12.1.0",
"dotenv": "^16.4.5",
"openai": "^4.58.2",
"toml": "^3.0.0",
"ts-jest": "^29.2.5"
}
}