-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "@nutgaard/gitnext",
"version": "0.0.1-beta.15",
"description": "Small cli to help prioritize your github tasks",
"main": "./lib/index.js",
"bin": {
"gitnext": "./lib/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/nutgaard/gitnext"
},
"scripts": {
"start": "npm run build && node lib/index.js",
"create": "npm run build && npm run test",
"build": "npm run build:clean && npm run build:tsc && npm run build:copy-resources",
"build:clean": "rm -rf lib",
"build:tsc": "tsc -p .",
"build:copy-resources": "cp -r src/graphql-queries lib && cp src/default-config.yaml lib"
},
"publishConfig": {
"access": "public"
},
"files": [
"lib",
"media"
],
"dependencies": {
"chalk": "^4.1.0",
"emoji-strip": "^1.0.1",
"ink": "^3.0.8",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.0",
"ink-spinner": "^4.0.1",
"javascript-time-ago": "^2.3.4",
"js-yaml": "^4.0.0",
"meow": "^9.0.0",
"open": "8.0.2",
"react": "^17.0.1"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/emoji-strip": "^1.0.0",
"@types/ink": "^2.0.3",
"@types/ink-big-text": "^1.2.0",
"@types/ink-gradient": "^2.0.1",
"@types/javascript-time-ago": "^2.0.2",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.35",
"@types/react": "^17.0.3",
"typescript": "^4.2.3"
},
"author": "Nicklas Utgaard",
"license": "MIT"
}