-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.83 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
61
62
63
64
65
{
"name": "git-ai-differ",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node build/src/main.js",
"clean": "rimraf coverage build tmp",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json",
"build:watch": "tsc -w -p tsconfig.json",
"build:release": "npm run clean && tsc -p tsconfig.release.json",
"lint": "eslint . --ext .ts --ext .mts",
"test": "jest --coverage",
"prettier": "prettier --config .prettierrc --write .",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"engines": {
"node": ">=22"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"organize-imports-cli",
"prettier --write"
],
"*.{css,html,json,md,scss}": "prettier --write"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.2",
"chalk": "^5.3.0",
"clipboardy": "^4.0.0",
"minimist": "^1.2.8",
"prettier": "^3.3.3",
"simple-git": "^3.25.0",
"ts-results-es": "^4.2.0",
"tslib": "^2.6",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/jest": "^29.5",
"@types/minimist": "^1.2.5",
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^7.6",
"@typescript-eslint/parser": "^7.6",
"eslint": "^8.56",
"eslint-config-prettier": "^9.1",
"eslint-plugin-jest": "^28.6",
"husky": "^9.0.11",
"jest": "^29.7",
"organize-imports-cli": "^0.10.0",
"prettier": "^3.3",
"rimraf": "^6.0",
"ts-api-utils": "^1.3",
"ts-jest": "^29.2",
"typescript": "^5.5"
},
"volta": {
"node": "20.12.2"
}
}