-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.37 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.37 KB
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": "@bsgworld/js-sdk",
"version": "0.1.8",
"description": "BSG JavaScript/TypeScript SDK for One-API",
"main": "dist/index.js",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"src"
],
"scripts": {
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rm -rf dist docs",
"docs": "typedoc",
"prepublishOnly": "npm run clean && npm run build",
"test": "echo \"No tests yet\" && exit 0",
"lint": "eslint src --ext .ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bsgworld/js-sdk.git"
},
"keywords": [
"BSG",
"SMS",
"Viber",
"WhatsApp",
"RCS",
"API",
"SDK",
"TypeScript"
],
"author": "BSG World <support@bsg.world>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bsgworld/js-sdk/issues"
},
"homepage": "https://bsg.world/developers",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typedoc": "^0.27.0",
"typescript": "^5.3.0"
},
"publishConfig": {
"access": "public"
}
}