-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.39 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
{
"name": "@farjs/ui",
"author": "viktor-podzigun",
"version": "0.0.0",
"license": "MIT",
"description": "Terminal UI React.js components library",
"scripts": {
"lint": "quick-lint-js ./**/*.mjs",
"test": "tsc && tsc -p ./test && bun test && node ./test/all.mjs",
"format": "prettier **/*.mjs --write",
"formatCheck": "prettier **/*.mjs --check"
},
"type": "module",
"exports": {
"./*": {
"types": "./types/*",
"default": "./src/*"
}
},
"types": "./types/*",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/farjs/farjs-ui.git"
},
"homepage": "https://github.com/farjs/farjs-ui",
"bugs": {
"url": "http://github.com/farjs/farjs-ui/issues"
},
"keywords": [
"react",
"cli-ui",
"tui",
"terminalui"
],
"engines": {
"node": ">=14.16",
"bun": ">=0.8"
},
"dependencies": {
"@farjs/blessed": "0.3.2",
"react": "^17.0.1",
"react-blessed": "0.7.2"
},
"devDependencies": {
"@types/node": "^16.6.2",
"@types/react": "^17.0.1",
"@types/react-blessed": "^0.7.3",
"@types/react-test-renderer": "^17.0.1",
"c8": "^7.13.0",
"mock-fn": "^1.1.0",
"prettier": "^2.8.8",
"quick-lint-js": "^3.0.0",
"react-assert": "^1.1.0",
"react-test-renderer": "^17.0.1",
"typescript": "^4.9.5"
}
}