bb-api-platforma 0.1.168
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +44 -0
- package/dist/BetBoosterApi.d.ts +1148 -0
- package/dist/BetBoosterApi.js +2428 -0
- package/dist/BetBoosterApi.min.d.ts +1777 -0
- package/dist/BetBoosterApi.min.js +2 -0
- package/dist/BetBoosterApi.min.js.map +1 -0
- package/dist/BetBoosterOfficeApi.d.ts +941 -0
- package/dist/BetBoosterOfficeApi.js +1879 -0
- package/dist/BetBoosterOfficeApi.test.d.ts +1 -0
- package/dist/BetBoosterOfficeApi.test.js +24 -0
- package/dist/Types.d.ts +1742 -0
- package/dist/Types.js +896 -0
- package/dist/coupon.d.ts +139 -0
- package/dist/coupon.js +491 -0
- package/dist/version.d.ts +1 -0
- package/dist/version.js +14 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bb-api-platforma",
|
|
3
|
+
"version": "0.1.168",
|
|
4
|
+
"description": "API module for BetBooster Platform",
|
|
5
|
+
"productName": "BetBooster Platform API",
|
|
6
|
+
"author": "Tomy Bet <tomybet.com@gmail.com>",
|
|
7
|
+
"private": false,
|
|
8
|
+
"main": "dist/BetBoosterApi.min.js",
|
|
9
|
+
"types": "dist/BetBoosterApi.min.d.ts",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"scripts": {
|
|
12
|
+
"build": "rimraf ./dist && tsc --project tsconfig.build.json",
|
|
13
|
+
"build:compress": "npm run build && terser --compress --mangle --source-map \"url='BetBoosterApi.min.js.map'\" --output dist/BetBoosterApi.min.js dist/BetBoosterApi.js",
|
|
14
|
+
"build:types": "dts-bundle-generator -o dist/BetBoosterApi.min.d.ts src/BetBoosterApi.ts",
|
|
15
|
+
"publish": "npm run version:patch && npm run build:compress && npm run build:types && git add . && git commit -m \"Release v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\") && git push --set-upstream origin main && git push --tags",
|
|
16
|
+
"version:patch": "npm --no-git-tag-version version patch && node src/version.js",
|
|
17
|
+
"release": "npm run version:patch && npm run build:compress && npm run build:types && git add . && git commit -m \"Release v$(node -p \"require('./package.json').version\")\" && git tag v$(node -p \"require('./package.json').version\") && git push --set-upstream origin main && git push --tags",
|
|
18
|
+
"dev": "npx nodemon",
|
|
19
|
+
"doc": "rimraf ./docs && typedoc",
|
|
20
|
+
"test": "echo \"Error: no test specified {%1} \" && exit 1"
|
|
21
|
+
},
|
|
22
|
+
"keywords": [
|
|
23
|
+
"api",
|
|
24
|
+
"BetBooster",
|
|
25
|
+
"betting",
|
|
26
|
+
"typescript"
|
|
27
|
+
],
|
|
28
|
+
"license": "MIT",
|
|
29
|
+
"files": [
|
|
30
|
+
"dist/",
|
|
31
|
+
"README.md"
|
|
32
|
+
],
|
|
33
|
+
"repository": {
|
|
34
|
+
"type": "git",
|
|
35
|
+
"url": "git+https://gitlab.com/betseller/bb-api-platforma.git"
|
|
36
|
+
},
|
|
37
|
+
"homepage": "https://betseller.gitlab.io/bb-api-platforma",
|
|
38
|
+
"devDependencies": {
|
|
39
|
+
"@types/jest": "^29.5.12",
|
|
40
|
+
"@types/lodash": "^4.17.6",
|
|
41
|
+
"@types/node": "^20.14.10",
|
|
42
|
+
"axios": "^1.7.2",
|
|
43
|
+
"chalk": "^5.3.0",
|
|
44
|
+
"dts-bundle-generator": "^9.5.1",
|
|
45
|
+
"jest": "^29.7.0",
|
|
46
|
+
"lodash": "^4.17.21",
|
|
47
|
+
"moment": "^2.30.1",
|
|
48
|
+
"nodemon": "^3.1.4",
|
|
49
|
+
"rimraf": "^6.0.1",
|
|
50
|
+
"terser": "^5.31.2",
|
|
51
|
+
"ts-jest": "^29.2.3",
|
|
52
|
+
"ts-node": "^10.9.2",
|
|
53
|
+
"typedoc": "^0.26.4",
|
|
54
|
+
"typescript": "^5.5.3"
|
|
55
|
+
},
|
|
56
|
+
"packageManager": "pnpm@9.1.2+sha512.127dc83b9ea10c32be65d22a8efb4a65fb952e8fefbdfded39bdc3c97efc32d31b48b00420df2c1187ace28c921c902f0cb5a134a4d032b8b5295cbfa2c681e2"
|
|
57
|
+
}
|