-
-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
87 lines (87 loc) · 1.67 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
{
"name": "ink-text-input",
"version": "6.0.0",
"description": "Text input component for Ink",
"license": "MIT",
"repository": "vadimdemedes/ink-text-input",
"author": {
"name": "Vadim Demedes",
"email": "vadimdemedes@hey.com",
"url": "https://github.com/vadimdemedes"
},
"type": "module",
"exports": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"engines": {
"node": ">=18"
},
"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": "^5.3.0",
"type-fest": "^4.18.2"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"@types/react": "^18.3.2",
"@types/sinon": "^17.0.3",
"@vdemedes/prettier-config": "^2.0.1",
"ava": "^6.1.3",
"delay": "^6.0.0",
"eslint-config-xo-react": "^0.27.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.2",
"ink": "^5.0.0",
"ink-testing-library": "vadimdemedes/ink-testing-library#f44b077e9a05a1d615bab41c72906726d34ea085",
"prettier": "^3.2.5",
"react": "^18.3.1",
"sinon": "^17.0.1",
"tsimp": "^2.0.11",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"peerDependencies": {
"ink": ">=5",
"react": ">=18"
},
"ava": {
"extensions": {
"ts": "module",
"tsx": "module"
},
"nodeArguments": [
"--import=tsimp/import"
]
},
"xo": {
"extends": [
"xo-react"
],
"prettier": true,
"rules": {
"unicorn/prevent-abbreviations": "off"
}
},
"prettier": "@vdemedes/prettier-config"
}