-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.15 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
{
"name": "@vingogo/static-upload",
"version": "0.3.0",
"description": "upload static assets to S3 or OSS",
"private": false,
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/vingogo/static-upload.git"
},
"author": "Alvin",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"commit": "cz",
"commitlint": "commitlint --edit $1",
"lint-staged": "lint-staged",
"husky": "husky install",
"ci:version": "changeset version && pnpm install --frozen-lockfile false",
"ci:publish": "pnpm build && changeset publish"
},
"bin": {
"static-upload": "lib/index.js"
},
"files": [
"lib",
"package.json"
],
"license": "MIT",
"dependencies": {
"ali-oss": "^6.17.1",
"aws-sdk": "^2.1399.0",
"chalk": "^4",
"cli-progress": "^3.8.2",
"fast-glob": "^3.2.4",
"fs-extra": "^9.0.1",
"lib": "link:/Volumes/Macintosh/Users/alvin/Documents/project/3T/vin/vingogo/static-upload/lib",
"mime": "^2.4.6",
"yargs": "^16.1.1"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/ali-oss": "^6.16.8",
"@types/chalk": "^2.2.0",
"@types/cli-progress": "^3.8.0",
"@types/fs-extra": "^9.0.4",
"@types/mime": "^2.0.3",
"@types/yargs": "^15.0.10",
"@vingogo/tsconfig": "^0.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"husky": "^7.0.1",
"lint-staged": "^11.1.2",
"prettier": "^2.3.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"bugs": {
"url": "https://github.com/vingogo/static-upload/issues"
},
"homepage": "https://github.com/vingogo/static-upload#readme",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --config ./.prettierrc.js --write"
],
"**/*.json": [
"prettier --config ./.prettierrc.js --write"
]
}
}