-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.01 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
{
"name": "node_tui",
"version": "0.0.2",
"description": "Package for creating Terminal User Interfaces",
"main": "mod.js",
"type": "module",
"exports": {
".": "./"
},
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"demo": "tsx examples/demo.ts",
"test": "ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Im-Beast/node_tui.git"
},
"keywords": [
"typescript",
"tui",
"console",
"terminal",
"ts",
"js",
"node"
],
"author": "Im-Beast",
"license": "BEL",
"bugs": {
"url": "https://github.com/Im-Beast/node_tui/issues"
},
"homepage": "https://github.com/Im-Beast/node_tui#readme",
"devDependencies": {
"crayon.js": "^3.3.3",
"prettier": "3.0.2",
"tsx": "^3.12.7"
},
"dependencies": {
"@types/node": "^20.5.6",
"ava": "^5.3.1"
},
"ava": {
"extensions": [
"ts",
"js"
],
"nodeArguments": [
"--loader=tsx"
]
}
}