-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.55 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
{
"name": "switch-branch-cli",
"version": "1.0.1",
"description": "Switch Git branches by their pull request title",
"license": "MIT",
"repository": "vadimdemedes/switch-branch-cli",
"author": {
"name": "Vadim Demedes",
"email": "[email protected]",
"url": "https://vadimdemedes.com"
},
"bin": {
"switch-branch": "./dist/cli.js"
},
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"prepare": "npm run build",
"build": "esbuild source/cli.js --bundle --platform=node --loader:.js=jsx --external:./node_modules/* --format=esm --outfile=dist/cli.js",
"dev": "npm run build -- --watch",
"test": "xo"
},
"files": [
"dist"
],
"dependencies": {
"@cassiozen/usestatemachine": "^1.0.1",
"conf": "^10.1.2",
"execa": "^6.1.0",
"figures": "^4.0.1",
"git-remote-origin-url": "^4.0.0",
"got": "^12.0.4",
"ink": "^3.2.0",
"ink-select-input": "^4.2.1",
"ink-spinner": "^4.0.3",
"ink-text-input": "^4.0.3",
"is-git-repository": "^2.0.0",
"meow": "^10.1.2",
"open": "^8.4.0",
"parse-github-url": "^1.0.2",
"parse-link-header": "^2.0.0",
"react": "^17.0.2"
},
"devDependencies": {
"@vdemedes/prettier-config": "^2.0.1",
"esbuild": "^0.14.39",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.5.0",
"prettier": "^2.6.2",
"xo": "^0.49.0"
},
"prettier": "@vdemedes/prettier-config",
"xo": {
"extends": "xo-react",
"prettier": true,
"rules": {
"react/function-component-definition": "off",
"react/no-unescaped-entities": "off"
}
}
}