-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.51 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.51 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
{
"name": "commitfy",
"version": "0.3.0",
"main": "lib/index.js",
"repository": "https://github.com/ribeirogab/commitfy.git",
"author": "ribeirogab <ribeirogabx@gmail.com>",
"license": "MIT",
"description": "Generate your commit in 1 second with AI. ✨",
"keywords": [
"ai",
"commit",
"commits",
"chatgpt",
"openai",
"commitfy"
],
"scripts": {
"build": "tsup",
"publish:npm": "npm run build && npm publish",
"cfy": "npm run build -- --silent && node bin/cli.js",
"vitest": "vitest --globals --config vitest.config.ts",
"test": "npm run vitest -- run",
"test:unit": "npm run vitest -- --project unit --run",
"test:integration": "npm run vitest -- --project integration --run",
"test:watch": "npm run vitest",
"test:coverage": "npm run vitest -- run --coverage",
"test:ci": "npm run vitest -- run --silent --coverage --reporter=junit --outputFile.junit=./test-output/junit.xml",
"prepare": "husky"
},
"bin": {
"commitfy": "bin/cli.js",
"cfy": "bin/cli.js"
},
"files": [
"lib",
"bin"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"inquirer": "^10.1.6",
"openai": "^4.54.0"
},
"devDependencies": {
"@ribeirogab/eslint-config": "^2.0.1",
"@types/node": "^22.1.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"husky": "^9.1.4",
"tsup": "^8.2.4",
"tsx": "^4.16.5",
"typescript": "^5.5.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.0.5"
}
}