-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 949 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 949 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
43
44
{
"name": "bob-cli",
"version": "1.10.0",
"description": "Bob - Your CLI Buddy",
"keywords": [
"bob",
"cli",
"helper",
"global",
"script"
],
"homepage": "https://github.com/augustofrade/bob-cli#readme",
"bugs": {
"url": "https://github.com/augustofrade/bob-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/augustofrade/bob-cli.git"
},
"license": "GPL-3.0-or-later",
"author": "Augusto Frade",
"type": "commonjs",
"main": "index.js",
"scripts": {
"ts": "ts-node src/index.ts",
"setup": "npm install && tsc && npm i -g"
},
"bin": {
"bob": "./build/index.js"
},
"dependencies": {
"chalk": "^5.4.1",
"qr": "^0.5.0",
"ws": "^8.18.3",
"yargs": "^18.0.0"
},
"devDependencies": {
"@types/node": "^24.0.10",
"@types/ws": "^8.18.1",
"@types/yargs": "^17.0.33",
"prettier": "3.6.2",
"ts-node": "^10.9.2"
}
}