-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 916 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
41
{
"name": "nayr",
"description": "Nayr allows you to automatically generate links for your yarn packages.",
"version": "1.0.100000009",
"main": "dist/index.js",
"license": "MIT",
"repository": "https://github.com/callmeteus/nayr",
"author": "Gio <[email protected]>",
"files": [
"./dist",
"./bin"
],
"bin": {
"nayr": "./bin/nayr.js"
},
"scripts": {
"start": "node dist/index.js",
"watch": "tsc --watch",
"build": "tsc"
},
"dependencies": {
"axios": "^1.5.1",
"cli-progress": "^3.12.0",
"colors": "^1.4.0",
"deepmerge": "^4.3.1",
"glob": "^10.3.10",
"which": "^4.0.0",
"winston": "^3.11.0",
"yaml": "^2.3.3",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^20.8.7",
"@types/which": "^3.0.1",
"@types/yargs": "^17.0.29",
"typescript": "^5.2.2"
},
"resolutions": {
"wrap-ansi": "7.0.0"
}
}