-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 732 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 732 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
{
"name": "aio",
"version": "0.1.1",
"description": "All-in-One CLI: one tool all things.",
"main": "src/index.js",
"bin": {
"aio": "src/index.js"
},
"scripts": {
"start": "node src/index.js",
"build": "pkg --compress GZip ."
},
"pkg": {
"outputPath": "binaries",
"targets": [
"node18-linux",
"node18-win",
"node18-macos"
],
"assets": [
"node_modules/sharp/vendor/**/*",
"node_modules/sharp/build/Release/**/*"
]
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"pkg": "^5.8.1"
},
"dependencies": {
"commander": "^10.0.1",
"qrcode": "^1.5.3",
"serve-handler": "^6.1.5",
"sharp": "^0.32.1"
}
}