-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.44 KB
/
package.json
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
52
53
54
55
56
57
58
59
60
61
{
"name": "file-exchange",
"version": "0.1.2",
"keywords": [
"file",
"exchange",
"transfer",
"mobile",
"pc",
"file-upload"
],
"description": "upload and download between pc and mobile",
"author": {
"url": "https://github.com/GaryChangCN",
"name": "garychang"
},
"repository": {
"directory": "https://github.com/GaryChangCN/file-exchange"
},
"homepage": "https://github.com/GaryChangCN/file-exchange",
"license": "./LICENSE",
"scripts": {
"dev": "onchange -i -k 'src/**/*.ts' -- ts-node src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"bin": {
"file-exchange": "./.bin/file-exchange"
},
"files": [
"dist/**/*",
"html/*",
"./readme.md"
],
"devDependencies": {
"@types/formidable": "^2.0.5",
"@types/fs-extra": "^9.0.13",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/node": "^17.0.35",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"onchange": "^7.1.0",
"ts-node": "^10.7.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@types/koa-mount": "^4.0.1",
"cli-progress": "^3.11.1",
"commander": "^9.2.0",
"formidable": "^2.0.1",
"fs-extra": "^10.1.0",
"koa": "^2.13.4",
"koa-mount": "^4.0.0",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"qrcode-terminal": "^0.12.0"
}
}