forked from maticzav/ink-table
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.06 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
{
"name": "ink-table",
"version": "0.0.0-development",
"description": "A table component for Ink.",
"main": "dist/index.js",
"repository": "maticzav/ink-table",
"author": "Matic Zavadlal <matic.zavadlal@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"build": "tsc",
"coverage": "codecov",
"test": "jest",
"prepare": "npm run build"
},
"files": ["dist"],
"keywords": [
"cli",
"ink-cli",
"ink",
"table",
"ink-table",
"ink-component",
"component"
],
"dependencies": {
"object-hash": "^2.0.3"
},
"devDependencies": {
"@tsconfig/node-lts": "^22.0.0",
"@tsconfig/strictest": "^2.0.5",
"@types/jest": "26.0.24",
"@types/node": "14.18.23",
"@types/object-hash": "1.3.4",
"@types/react": "18.3.11",
"codecov": "3.8.3",
"husky": "4.3.8",
"ink": "5.0.1",
"ink-testing-library": "2.1.0",
"jest": "26.6.3",
"prettier": "2.7.1",
"pretty-quick": "3.3.1",
"react": "18.3.1",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"typescript": "5.6.3"
},
"peerDependencies": {
"ink": ">=5.0.0",
"react": ">=18.0.0"
}
}