-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1007 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1007 Bytes
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
{
"name": "dotnetman",
"module": "index.ts",
"type": "module",
"version": "0.0.1",
"scripts": {
"build": "bun build index.ts --compile --outfile ./bin/dotnetman"
},
"devDependencies": {
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/json-pointer": "^1.0.34",
"@types/lodash": "^4.17.20",
"@types/node": "^20.11.17",
"@types/yargs": "^17.0.34",
"eslint": "^9.39.1",
"typescript-eslint": "^8.46.4"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"js-yaml": "^4.1.1",
"json-pointer": "^0.6.2",
"lodash": "^4.17.21",
"yargs": "^17.7.2"
},
"signale": {
"displayScope": false,
"displayBadge": true,
"displayDate": false,
"displayFilename": false,
"displayLabel": false,
"displayTimestamp": false,
"underlineLabel": false,
"underlineMessage": false,
"underlinePrefix": false,
"underlineSuffix": false,
"uppercaseLabel": true
}
}