-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (53 loc) · 1.1 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
{
"name": "@joshuatmb/cli",
"version": "1.0.6",
"description": "My personal cli",
"main": "index.js",
"type": "module",
"bin": {
"myapp": "cli.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && NODE_ENV=production babel src/lib --out-dir dist --copy-files"
},
"keywords": [
"cli",
"portfolio",
"personal"
],
"author": "jjoshuaa",
"license": "MIT",
"dependencies": {
"ink": "^3.2.0",
"ink-big-text": "^1.2.0",
"ink-gradient": "^2.0.0",
"ink-select-input": "^4.2.1",
"open": "^8.4.0",
"react": "^17.0.2"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/register": "^7.16.0"
},
"presets": [
[
"@babel/env",
{
"targets": {
"edge": "17",
"firefox": "60",
"chrome": "67",
"safari": "11.1"
},
"useBuiltIns": "usage",
"corejs": "3.6.5"
}
],
"@babel/preset-react"
]
}