-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.17 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 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
{
"name": "@floatingfile/cli",
"version": "3.5.0",
"description": "The official floatingfile CLI",
"private": true,
"main": "build/index.js",
"bin": {
"floatingfile": "build/index.js"
},
"scripts": {
"dev": "tsc -p . -w",
"start": "yarn build && node ./build/index.js",
"build": "tsc -p .",
"package": "pkg ."
},
"pkg": {
"scripts": "build/**/*.js",
"outputPath": "dist",
"targets": [
"node14-macos-x64",
"node14-win-x64",
"node14-linux-x64"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/cli-progress": "^3.9.2",
"@types/mime-types": "^2.1.1",
"@types/node": "^17.0.8",
"@types/progress-stream": "^2.0.2",
"@types/readline-sync": "^1.4.4",
"@types/request": "^2.48.8",
"@types/yargs": "^17.0.8",
"pkg": "^5.5.1",
"typescript": "^4.5.4"
},
"dependencies": {
"@floatingfile/types": "0.0.1",
"@types/progress-stream": "^2.0.2",
"axios": "^0.24.0",
"chalk": "4.1.2",
"cli-progress": "^3.10.0",
"mime-types": "^2.1.34",
"progress-stream": "^2.0.0",
"readline-sync": "^1.4.10",
"request": "^2.88.2",
"yargs": "^17.3.1"
}
}