-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 977 Bytes
/
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
{
"name": "git-gbr",
"version": "1.0.1",
"description": "Switch git branch interactively using arrow keys",
"keywords": [
"git",
"branch",
"switch",
"helper tool"
],
"license": "MIT",
"repository": {
"url": "https://github.com/Kadrian/gbr"
},
"author": {
"name": "Kai Rollmann",
"url": "https://github.com/kadrian/"
},
"main": "src/main.ts",
"bin": {
"gbr": "./dist/gbr.js"
},
"files": [
"dist/gbr.js",
"dist/main.js"
],
"scripts": {
"start": "ts-node src/main.ts",
"build": "tsc --outDir dist src/main.ts"
},
"dependencies": {
"inquirer": "^8.2.0"
},
"devDependencies": {
"@types/inquirer": "^8.1.3",
"@types/node": "^16.11.10",
"prettier": "^2.5.0",
"ts-node": "^10.4.0",
"tsc": "^2.0.3",
"typescript": "^4.5.2"
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"proseWrap": "always"
}
}