-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.76 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.76 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
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "gitsu-cli",
"version": "1.0.8",
"description": "Interactive command line util for quickly & easily switching git users",
"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",
"check": "biome check src",
"check:write": "pnpm check -- --write"
},
"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": "^2.2.4",
"@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",
"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"
]
}
}