-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.76 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
66
67
68
{
"name": "git-doctor",
"version": "0.0.3",
"description": "GitDoctor, a TypeScript-powered command-line marvel, revolutionizes your Git experience with a range of unique features tailored for efficient version control.",
"main": "src/index.ts",
"repository": {
"url": "https://github.com/Sarvar55/git-doctor"
},
"bin": {
"git-doctor": "./build/cli/bin.js",
"gitd": "./build/cli/bin.js"
},
"keywords": [
"git",
"command-line",
"typescript",
"cli",
"cli-git",
"git-doctor"
],
"scripts": {
"start": "rm -rf build && npm run build && node build/cli/bin.js",
"build": "tsc-esm",
"lint": "eslint . --ext ts --max-warnings 0 --report-unused-disable-directives",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write .",
"build:push": "npm run build && git add . && git commit -m 'build' && git push",
"prepare": "husky install",
"build:start": "npm run build && npm run start"
},
"type": "module",
"release": {
"branches": [
"master"
]
},
"author": "Sarvar55",
"license": "ISC",
"devDependencies": {
"@types/configstore": "^6.0.2",
"@types/node": "^20.12.11",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"axios": "^1.6.7",
"configstore": "^6.0.0",
"eslint": "^8.56.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "3.2.5",
"typescript": "^5.3.3"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@clack/prompts": "^0.7.0",
"@digitak/tsc-esm": "^3.1.4",
"@google/generative-ai": "^0.2.1",
"@langchain/google-genai": "^0.0.10",
"@types/execa": "^2.0.0",
"chalk": "^5.3.0",
"cli-select": "^1.1.2",
"commander": "^12.0.0",
"config": "^3.3.11",
"execa": "^8.0.1",
"timers-promises": "^1.0.1"
}
}