@thelllabs/winehaus-sdk 0.0.1
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 +32 -0
- package/dist/cjs/api/api.js +293 -0
- package/dist/cjs/index.js +21 -0
- package/dist/cjs/interfaces.js +2 -0
- package/dist/cjs/sdk.js +329 -0
- package/dist/esm/api/api.js +287 -0
- package/dist/esm/index.js +3 -0
- package/dist/esm/interfaces.js +1 -0
- package/dist/esm/sdk.js +300 -0
- package/dist/types/api/api.d.ts +282 -0
- package/dist/types/index.d.ts +3 -0
- package/dist/types/interfaces.d.ts +16 -0
- package/dist/types/sdk.d.ts +40 -0
- package/dist/umd/index.js +2 -0
- package/dist/umd/index.js.LICENSE.txt +17 -0
- package/package.json +106 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* The buffer module from node.js, for the browser.
|
|
3
|
+
*
|
|
4
|
+
* @author Feross Aboukhadijeh <feross@feross.org> <http://feross.org>
|
|
5
|
+
* @license MIT
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
/*!
|
|
9
|
+
* The buffer module from node.js, for the browser.
|
|
10
|
+
*
|
|
11
|
+
* @author Feross Aboukhadijeh <https://feross.org>
|
|
12
|
+
* @license MIT
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
/*! Axios v1.10.0 Copyright (c) 2025 Matt Zabriskie and contributors */
|
|
16
|
+
|
|
17
|
+
/*! ieee754. BSD-3-Clause License. Feross Aboukhadijeh <https://feross.org/opensource> */
|
package/package.json
ADDED
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thelllabs/winehaus-sdk",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Winehaus SDK",
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"umd:main": "dist/umd/index.js",
|
|
8
|
+
"types": "dist/types/index.d.ts",
|
|
9
|
+
"scripts": {
|
|
10
|
+
"prepublishOnly": "pinst --disable",
|
|
11
|
+
"postpublish": "pinst --enable",
|
|
12
|
+
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
|
|
13
|
+
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
|
|
14
|
+
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
|
|
15
|
+
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
|
|
16
|
+
"build:types": "node tools/cleanup src/types && tsc -p config/tsconfig.types.json && npm run copy-dts",
|
|
17
|
+
"clean": "node tools/cleanup",
|
|
18
|
+
"package": "npm run build && npm pack",
|
|
19
|
+
"test": "jest --no-cache --runInBand --passWithNoTests",
|
|
20
|
+
"test:watch": "jest --watch",
|
|
21
|
+
"test:cov": "jest --coverage --no-cache --runInBand",
|
|
22
|
+
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
|
|
23
|
+
"addscope": "node tools/packagejson name @thelllabs/winehaus-sdk",
|
|
24
|
+
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist/types",
|
|
25
|
+
"lint": "eslint ./src --fix",
|
|
26
|
+
"release": "standard-version",
|
|
27
|
+
"git:add": "git add --all",
|
|
28
|
+
"git:commit": "git-cz",
|
|
29
|
+
"git": "npm run git:add && npm run git:commit",
|
|
30
|
+
"check-types": "tsc --incremental false --noEmit",
|
|
31
|
+
"api": "npm run api:pull && npm run api:gen",
|
|
32
|
+
"api:gen": "node tools/generate-api.js",
|
|
33
|
+
"api:pull": "node tools/pull-api-swagger.js"
|
|
34
|
+
},
|
|
35
|
+
"publishConfig": {
|
|
36
|
+
"access": "public",
|
|
37
|
+
"registry": "https://registry.npmjs.org"
|
|
38
|
+
},
|
|
39
|
+
"files": [
|
|
40
|
+
"dist"
|
|
41
|
+
],
|
|
42
|
+
"keywords": [
|
|
43
|
+
"pixchain",
|
|
44
|
+
"sdk"
|
|
45
|
+
],
|
|
46
|
+
"author": "LLLabs",
|
|
47
|
+
"license": "MIT",
|
|
48
|
+
"repository": {
|
|
49
|
+
"type": "git",
|
|
50
|
+
"url": "git@github.com:thelllabs/winehaus-sdk.git"
|
|
51
|
+
},
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/thelllabs/winehaus-sdk/issues"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@commitlint/cli": "^19.8.1",
|
|
57
|
+
"@commitlint/config-conventional": "^19.8.1",
|
|
58
|
+
"@eslint/eslintrc": "^3.3.1",
|
|
59
|
+
"@eslint/js": "^9.31.0",
|
|
60
|
+
"@types/jest": "^27.0.1",
|
|
61
|
+
"@types/lodash": "^4.14.178",
|
|
62
|
+
"@typescript-eslint/eslint-plugin": "8.37.0",
|
|
63
|
+
"@typescript-eslint/parser": "^8.37.0",
|
|
64
|
+
"axios-mock-adapter": "2.1.0",
|
|
65
|
+
"copyfiles": "^2.4.1",
|
|
66
|
+
"cz-conventional-changelog": "^3.3.0",
|
|
67
|
+
"eslint": "^9.31.0",
|
|
68
|
+
"eslint-config-prettier": "^10.1.8",
|
|
69
|
+
"eslint-plugin-prettier": "^5.5.3",
|
|
70
|
+
"eslint-plugin-sonarjs": "^3.0.4",
|
|
71
|
+
"globals": "^16.3.0",
|
|
72
|
+
"husky": "^9.1.7",
|
|
73
|
+
"jest": "^27.2.0",
|
|
74
|
+
"jest-fetch-mock": "3.0.3",
|
|
75
|
+
"lint-staged": "^12.1.4",
|
|
76
|
+
"pinst": "^2.1.6",
|
|
77
|
+
"prettier": "^3.6.2",
|
|
78
|
+
"standard-version": "^9.5.0",
|
|
79
|
+
"swagger-typescript-api": "13.2.7",
|
|
80
|
+
"ts-jest": "^27.0.5",
|
|
81
|
+
"ts-loader": "^9.2.5",
|
|
82
|
+
"typescript": "^4.5.4",
|
|
83
|
+
"webpack": "^5.52.1",
|
|
84
|
+
"webpack-cli": "^4.8.0"
|
|
85
|
+
},
|
|
86
|
+
"dependencies": {
|
|
87
|
+
"axios": "^1.10.0",
|
|
88
|
+
"date-fns": "2.29.1",
|
|
89
|
+
"dotenv": "^16.0.1",
|
|
90
|
+
"jwt-decode": "3.1.2",
|
|
91
|
+
"lodash": "^4.17.21",
|
|
92
|
+
"mitt": "3.0.0",
|
|
93
|
+
"node-polyfill-webpack-plugin": "^1.1.4",
|
|
94
|
+
"query-string": "^7.0.1",
|
|
95
|
+
"radash": "7.1.0"
|
|
96
|
+
},
|
|
97
|
+
"config": {
|
|
98
|
+
"commitizen": {
|
|
99
|
+
"path": "./node_modules/cz-conventional-changelog"
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
"engines": {
|
|
103
|
+
"node": ">=16.13.2 <=22",
|
|
104
|
+
"npm": ">=8.1.2 <=10"
|
|
105
|
+
}
|
|
106
|
+
}
|