-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.35 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
{
"name": "nd",
"version": "0.0.1",
"description": "ND - A fully-featured TUI library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"prepublish": "tsc",
"pretest": "tsc && eslint .",
"test": "node dist/test.js 2> errfile",
"lint": "eslint .",
"docs": "typedoc --out docs src/*.ts",
"cloc": "cloc . --exclude-dir=node_modules,dist,old"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r0wanda/nd.git"
},
"keywords": [
"tui",
"terminal",
"interface"
],
"author": "Rowan",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/r0wanda/nd/issues"
},
"homepage": "https://github.com/r0wanda/nd#readme",
"dependencies": {
"@types/bresenham": "^0.0.3",
"@types/gl-matrix": "^3.2.0",
"bresenham": "^0.0.4",
"deepmerge": "^4.3.1",
"gl-matrix": "^3.4.3",
"is-interactive": "^2.0.0",
"minimatch": "^9.0.3",
"string-width": "^7.1.0",
"strip-ansi": "^7.1.0",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/node": "^20.11.8",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"eslint": "^8.52.0",
"typedoc": "^0.25.2",
"typescript": "^5.2.2"
}
}