-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
72 lines (72 loc) · 1.77 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
{
"name": "strapi-provider-upload-tencent-cloud-storage",
"version": "1.1.4",
"description": "A integration of Tencent Cloud COS as a file storage solution within Strapi.",
"main": "dist/index.js",
"directories": {
"lib": "./lib"
},
"scripts": {
"cz": "cz",
"format": "prettier --write --ignore-unknown",
"build": "tsc",
"prepare": "husky install",
"preinstall": "npx only-allow pnpm -y"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yclgkd/strapi-provider-upload-tencent-cloud-storage.git"
},
"keywords": [
"strapi",
"strapi-v4",
"tencent-cos",
"cos",
"strapi-provider",
"strapi-provider-upload",
"object-storage"
],
"author": {
"name": "Brian Yao",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/yclgkd/strapi-provider-upload-tencent-cloud-storage/issues"
},
"homepage": "https://github.com/yclgkd/strapi-provider-upload-tencent-cloud-storage#readme",
"devDependencies": {
"@commitlint/cli": "^17.7.0",
"@commitlint/config-conventional": "^17.7.0",
"@types/node": "^20.5.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "3.0.2",
"typescript": "^5.1.6"
},
"dependencies": {
"@strapi/utils": "^4.12.4",
"cos-nodejs-sdk-v5": "^2.12.4"
},
"peerDependencies": {
"@strapi/strapi": ">=4.0.0"
},
"engines": {
"node": ">=14.19.1",
"npm": ">=6.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}