-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 896 Bytes
/
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
{
"name": "fs-killer",
"version": "1.3.1",
"main": "./lib/index.js",
"license": "MIT",
"type": "commonjs",
"author": "SHUAXIN",
"bin": {
"sorter": "./lib/bin/index.js",
"upload": "./lib/bin/upload.js"
},
"keywords": [
"node",
"cli",
"filesort"
],
"scripts": {
"build": "tsc -b ./tsconfig.json",
"start": "ts-node ./src/index.ts",
"sorter": "ts-node ./src/bin/index.ts -h",
"upload": "ts-node ./src/bin/upload.ts"
},
"homepage": "https://github.com/SHUAXINDIARY/fileSorter",
"repository": "https://github.com/SHUAXINDIARY/fileSorter",
"devDependencies": {
"@tsconfig/node18": "^18.2.2",
"@types/node": "^18.0.3",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"typescript": "^5.3.3"
},
"files": [
"lib"
],
"dependencies": {
"chalk": "4.1.0",
"commander": "^9.3.0",
"qiniu": "^7.11.0"
}
}