-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.76 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
{
"name": "@otakustay/bce-sdk",
"version": "0.12.13",
"description": "Yet another Baidu Cloud SDK",
"type": "module",
"exports": {
".": {
"require": "./cjs/index.js",
"import": "./es/index.js"
}
},
"module": "./es/index.js",
"main": "./cjs/index.js",
"types": "./cjs/index.d.ts",
"engines": {
"node": ">= 16"
},
"scripts": {
"lint": "eslint src",
"build": "tsc -p tsconfig.cjs.json && tsc -p tsconfig.es.json && echo '{\"type\": \"commonjs\"}' > cjs/package.json",
"ci": "yarn install --immutable && npm run lint && npm run build",
"release": "standard-version",
"deploy": "npm publish --access public",
"prepublishOnly": "npm run ci"
},
"files": [
"cjs",
"es"
],
"repository": {
"type": "git",
"url": "git+https://github.com/otakustay/bce-sdk.git"
},
"keywords": [
"bce",
"bos"
],
"author": "otakustay <otakustay@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/otakustay/bce-sdk/issues"
},
"homepage": "https://github.com/otakustay/bce-sdk#readme",
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/eslint-parser": "^7.23.10",
"@babel/eslint-plugin": "^7.23.5",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@ecomfe/eslint-config": "^8.0.0",
"@types/babel__core": "^7.20.5",
"@types/eslint": "^8.56.2",
"@types/node": "16.18.79",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"husky": "^9.0.10",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"packageManager": "yarn@4.1.0+sha256.81a00df816059803e6b5148acf03ce313cad36b7f6e5af6efa040a15981a6ffb"
}