-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.3 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "pcs-cli",
"description": "Baidu Personal Cloud Storage's Command Line Interface.",
"version": "1.1.0",
"type": "module",
"bin": {
"pcs": "bin/pcs.js"
},
"scripts": {
"dev": "rollup -cw --watch.onEnd='node ./afterBuildScript.js' --environment NODE_ENV:development",
"start": "tsc -w",
"build": "rollup -c --environment NODE_ENV:production",
"build:esm": "tsc -m es6 --outDir dist/esm",
"test": "echo \"pre-commit scripts\"",
"lint:eslint": "eslint \"src/**/*.{ts,js}\" --fix",
"preversion": "yarn lint:eslint",
"version": "git add -A .",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sobird/pcs-cli.git"
},
"dependencies": {
"axios": "^1.6.1",
"bytes": "^3.1.2",
"chalk": "^5.3.0",
"cliui": "^8.0.1",
"commander": "^11.1.0",
"dayjs": "^1.11.10",
"glob": "^10.3.10",
"open": "^9.1.0",
"progress": "^2.0.3",
"prompts": "^2.4.2"
},
"keywords": [
"pcs-cli",
"pcs",
"baidu",
"baidu-pcs"
],
"bugs": {
"url": "https://github.com/sobird/pcs-cli/issues"
},
"author": {
"name": "sobird"
},
"license": "MIT",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/sobird/pcs-cli/blob/master/LICENSE"
}
],
"readmeFilename": "README.md",
"homepage": "https://github.com/sobird/pcs-cli",
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@types/bytes": "^3.1.4",
"@types/node": "^20.9.0",
"@types/osenv": "^0.1.3",
"@types/progress": "^2.0.7",
"@types/prompts": "^2.4.8",
"esbuild": "^0.19.5",
"eslint-config-sobird": "^0.2.13",
"husky": "^9.0.11",
"jest": "^29.7.0",
"rollup": "^4.3.0",
"rollup-plugin-clear": "^2.0.7",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.1.1",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}