forked from vadimdemedes/ink-text-input
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 1.74 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "ink-text-input",
"version": "4.0.1",
"description": "Text input component for Ink",
"license": "MIT",
"repository": "vadimdemedes/ink-text-input",
"author": {
"name": "Vadim Demedes",
"email": "[email protected]",
"url": "github.com/vadimdemedes"
},
"main": "build",
"types": "build/index.d.ts",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "tsc --noEmit && xo && FORCE_COLOR=1 ava",
"build": "tsc",
"prepare": "tsc",
"pretest": "tsc"
},
"files": [
"build"
],
"keywords": [
"ink",
"text",
"input",
"component",
"jsx",
"react",
"stdin",
"keypress",
"search",
"query"
],
"dependencies": {
"chalk": "^4.1.0",
"type-fest": "^0.15.1"
},
"devDependencies": {
"@ava/babel": "^1.0.1",
"@babel/preset-react": "^7.10.1",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/react": "^16.8.8",
"@vdemedes/prettier-config": "^1.0.0",
"ava": "^3.9.0",
"delay": "^4.3.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"husky": "^4.2.5",
"ink": "^3.0.5",
"ink-testing-library": "^2.0.0",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"react": "^16.5.2",
"sinon": "^7.2.7",
"typescript": "^3.9.5",
"xo": "^0.32.0"
},
"peerDependencies": {
"ink": "^3.0.0-3",
"react": "^16.5.2"
},
"ava": {
"babel": {
"testOptions": {
"presets": [
"@babel/preset-react"
]
}
}
},
"xo": {
"extends": [
"xo-react"
],
"plugins": [
"react"
],
"prettier": true,
"rules": {
"react/no-unused-prop-types": 0,
"react/prop-types": 0,
"unicorn/no-hex-escape": 0
}
},
"prettier": "@vdemedes/prettier-config",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}