-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "gitsu-cli",
"version": "1.0.7",
"description": "Command line util for quickly & easily switching git identities",
"author": "Jamie Weavis",
"homepage": "https://github.com/jamieweavis/gitsu#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jamieweavis/gitsu.git"
},
"bugs": {
"url": "https://github.com/jamieweavis/gitsu/issues"
},
"main": "./lib/src/app.js",
"bin": {
"gitsu": "./lib/src/app.js"
},
"keywords": [
"git",
"gitconfig",
"user",
"switch",
"gitsu",
"su",
"switch-user"
],
"scripts": {
"start": "node ./lib/src/app.js",
"dev": "ts-node-dev --respawn ./src/app.ts",
"build": "tsc",
"lint": "biome check src",
"lint:write": "npm run lint -- --write",
"format": "biome format src",
"format:write": "npm run format -- --write",
"prepare": "husky"
},
"dependencies": {
"@types/configstore": "^6.0.2",
"@types/inquirer": "^9.0.7",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"configstore": "^7.0.0",
"cosmiconfig": "^8.3.6",
"inquirer": "^12.5.0",
"log-symbols": "^7.0.0",
"typescript": "^5.8.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.0",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/changelog",
"@semantic-release/commit-analyzer",
"@semantic-release/npm",
"@semantic-release/git",
"@semantic-release/github",
"@semantic-release/release-notes-generator"
]
},
"lint-staged": {
"*.ts": [
"biome format --write",
"biome lint --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}