-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 873 Bytes
/
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
{
"name": "rw-tapy",
"version": "0.4.4",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "tsc; node dist/index.js test"
},
"main": "dist/index.js",
"bin": {
"rw-tapy": "dist/index.js"
},
"private": false,
"type": "module",
"author": "Stanislav Sokolov",
"license": "MIT",
"dependencies": {
"glob": "^10.3.3",
"graph-data-structure": "^3.3.0",
"picocolors": "^1.0.0",
"typescript": "^5.2.2",
"yaml": "^2.3.4",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.5.7",
"@types/yargs": "^17.0.24"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sokolovstas/tapy.git"
},
"bugs": {
"url": "https://github.com/sokolovstas/tapy/issues"
},
"homepage": "https://github.com/sokolovstas/tapy#readme",
"engines": {
"node": ">=18.0.0"
}
}