-
-
Notifications
You must be signed in to change notification settings - Fork 65
/
Copy pathpackage.json
65 lines (65 loc) · 1.32 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
65
{
"name": "sindresorhus",
"version": "3.0.2",
"description": "The Sindre Sorhus CLI",
"license": "MIT",
"repository": "sindresorhus/sindresorhus-cli",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"bin": "./dist/cli.js",
"engines": {
"node": ">=16"
},
"scripts": {
"pretest": "npm run build",
"prepublish": "npm run build",
"test": "xo && ava",
"build": "tsc"
},
"files": [
"dist",
"assets"
],
"keywords": [
"cli-app",
"cli",
"sindresorhus",
"unicorns"
],
"dependencies": {
"import-jsx": "^5.0.0",
"ink": "^4.2.0",
"ink-select-input": "^5.0.0",
"meow": "^12.0.1",
"open": "^9.1.0",
"react": "^18.2.0",
"term-img": "^6.0.0",
"terminal-image": "^2.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/react": "^18.2.11",
"ava": "^5.3.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"execa": "^7.1.1",
"typescript": "^5.1.3",
"xo": "^0.54.2"
},
"xo": {
"extends": [
"xo-react"
],
"rules": {
"@typescript-eslint/no-unsafe-assignment": "off",
"@typescript-eslint/no-unsafe-return": "off",
"@typescript-eslint/no-unsafe-call": "off",
"@typescript-eslint/no-unsafe-argument": "off"
}
}
}