-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.17 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.17 KB
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": "smartlink-cli",
"version": "1.0.0",
"description": "",
"main": "out/cli.js",
"bin": {
"smartlink-cli": "./out/cli.js"
},
"scripts": {
"build": "webpack && pkg . && mkdir -p ../public/cli && cp bin/* ../public/cli/",
"start": "node out/cli.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/node": "^22.7.5",
"@types/yargs": "^17.0.33",
"mocha": "^10.7.3",
"pkg": "^5.8.1",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"adm-zip": "^0.5.16",
"buffer": "^6.0.3",
"pino": "^9.6.0",
"pino-pretty": "^13.0.0",
"yargs": "^17.7.2"
},
"pkg": {
"scripts": "out/cli.js",
"assets": [
"node_modules/**/*.js",
"lib/worker.js"
],
"targets": [
"node18-linux-x64",
"node18-linux-arm64",
"node18-macos-x64",
"node18-macos-arm64",
"node18-win-x64",
"node18-win-arm64"
],
"outputPath": "bin"
},
"packageManager": "pnpm@9.11.0+sha256.1c0e33f70e5df9eede84a357bdfa0b1f9dba6e58194628d48a1055756f553754"
}