-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.09 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
{
"name": "cecli",
"version": "0.0.0",
"license": "MIT",
"bin": "dist/cli.js",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "tsc",
"watch": "tsc -p . --watch",
"start": "npm run build && dist/cli.js",
"pretest": "npm run build",
"test": "xo && ava",
"pkg": "pkg . --out-path=bin"
},
"files": [
"dist/cli.js"
],
"dependencies": {
"ink": "^3.0.8",
"ink-select-input": "^4.2.0",
"ink-text-input": "^4.0.1",
"meow": "^8.0.0",
"react": "^17.0.1"
},
"devDependencies": {
"@ava/typescript": "^1.1.1",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/react": "^16.9.55",
"ava": "^3.13.0",
"chalk": "^4.1.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"ink-testing-library": "^2.1.0",
"pkg": "^4.4.9",
"typescript": "^4.0.5",
"xo": "^0.34.2"
},
"ava": {
"typescript": {
"extensions": [
"tsx"
],
"rewritePaths": {
"source/": "dist/"
}
}
},
"xo": {
"extends": "xo-react",
"rules": {
"react/prop-types": "off"
}
},
"pkg": {
"scripts": "dist/**/*.js"
}
}