@gorilla-engine-sdk/ge-product-hub 0.1.4
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/License.md +64 -0
- package/README.md +202 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +19 -0
- package/dist/lib/clients.d.ts +1039 -0
- package/dist/lib/clients.js +2036 -0
- package/dist/lib/credentialStore.d.ts +8 -0
- package/dist/lib/credentialStore.js +80 -0
- package/dist/lib/errors.d.ts +48 -0
- package/dist/lib/errors.js +63 -0
- package/dist/lib/types.d.ts +406 -0
- package/dist/lib/types.js +58 -0
- package/package.json +48 -0
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@gorilla-engine-sdk/ge-product-hub",
|
|
3
|
+
"version": "0.1.4",
|
|
4
|
+
"description": "Product Hub client library for activation and trial handling against new Product Hub API.",
|
|
5
|
+
"license": "SEE LICENSE IN License.md",
|
|
6
|
+
"homepage": "https://www.gorilla-engine.com/",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"types": "dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"README.md",
|
|
12
|
+
"License.md"
|
|
13
|
+
],
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18.3.0"
|
|
16
|
+
},
|
|
17
|
+
"scripts": {
|
|
18
|
+
"prepack": "npm run build",
|
|
19
|
+
"build": "npx tsc --declaration",
|
|
20
|
+
"lint": "eslint 'src/**/*.{ts,tsx}'",
|
|
21
|
+
"test": "npx jest",
|
|
22
|
+
"test:unit": "jest --config jest.config.cjs",
|
|
23
|
+
"test:e2e": "jest --config jest.e2e.config.cjs",
|
|
24
|
+
"test:e2e:debug": "SKIP_CLEANUP=true jest --config jest.e2e.config.cjs",
|
|
25
|
+
"test:all": "npm run test:unit && npm run test:e2e",
|
|
26
|
+
"ci:publish": "node ../../scripts/ci-publish.js"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"cross-keychain": "^1.1.0"
|
|
30
|
+
},
|
|
31
|
+
"devDependencies": {
|
|
32
|
+
"@eslint/js": "^10.0.1",
|
|
33
|
+
"@types/jest": "^29.5.0",
|
|
34
|
+
"@types/node": "^24.3.1",
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "^8.60.1",
|
|
36
|
+
"@typescript-eslint/parser": "^8.60.1",
|
|
37
|
+
"eslint": "^10.4.1",
|
|
38
|
+
"eslint-config-prettier": "^10.1.8",
|
|
39
|
+
"globals": "^17.6.0",
|
|
40
|
+
"jest": "^29.7.0",
|
|
41
|
+
"ts-jest": "^29.4.11",
|
|
42
|
+
"typescript": "^6.0.3"
|
|
43
|
+
},
|
|
44
|
+
"publishConfig": {
|
|
45
|
+
"access": "public",
|
|
46
|
+
"registry": "https://registry.npmjs.org/"
|
|
47
|
+
}
|
|
48
|
+
}
|