-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1022 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 1022 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
45
46
47
48
49
50
51
{
"name": "basher",
"version": "1.0.0",
"description": "Easy TS CLI Automation Template",
"main": "dist/index.js",
"author": {
"name": "Seonglae Cho",
"email": "sungle3737@gmail.com",
"url": "http://www.seongland.com"
},
"license": "MIT",
"scripts": {
"build": "rm -rf ./dist && tsc",
"bin": "pnpm build && node dist/bin/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/seonglae/basher.git"
},
"homepage": "https://github.com/seonglae/basher",
"files": [
"dist"
],
"contributors": [
{
"name": "Seonglae Cho",
"email": "sungle3737@gmail.com",
"url": "http://www.seongland.com"
}
],
"keywords": [
],
"os": [
"linux",
"win32",
"macos"
],
"bin": {
"basher": "dist/bin/index.js"
},
"dependencies": {
"chalk": "^4.1.2",
"commander": "11.1.0",
"consola": "^3.2.3"
},
"devDependencies": {
"@types/node": "20.10.0",
"pkg": "^4.5.1",
"typescript": "5.3.2"
}
}