authtara-sdk 1.0.0
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 +420 -0
- package/dist/index.d.mts +450 -0
- package/dist/index.d.ts +450 -0
- package/dist/index.js +372 -0
- package/dist/index.mjs +340 -0
- package/package.json +72 -0
package/package.json
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "authtara-sdk",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "SDK Client untuk integrasi dengan DigitalSolution Platform - SSO, Billing, dan Metering",
|
|
5
|
+
"main": "./dist/index.js",
|
|
6
|
+
"module": "./dist/index.mjs",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.js"
|
|
13
|
+
}
|
|
14
|
+
},
|
|
15
|
+
"files": [
|
|
16
|
+
"dist",
|
|
17
|
+
"README.md",
|
|
18
|
+
"LICENSE"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
|
|
22
|
+
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
|
|
23
|
+
"test": "vitest",
|
|
24
|
+
"test:run": "vitest run",
|
|
25
|
+
"test:coverage": "vitest run --coverage",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"prepublishOnly": "bun run build && bun test:run",
|
|
28
|
+
"release": "bun run build && bun test:run && npm version patch",
|
|
29
|
+
"release:minor": "bun run build && bun test:run && npm version minor",
|
|
30
|
+
"release:major": "bun run build && bun test:run && npm version major"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"digitalsolution",
|
|
34
|
+
"authtara",
|
|
35
|
+
"sdk",
|
|
36
|
+
"sso",
|
|
37
|
+
"authentication",
|
|
38
|
+
"billing",
|
|
39
|
+
"metering",
|
|
40
|
+
"oauth",
|
|
41
|
+
"jwt",
|
|
42
|
+
"saas"
|
|
43
|
+
],
|
|
44
|
+
"author": "DigitalSolution Team",
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"repository": {
|
|
47
|
+
"type": "git",
|
|
48
|
+
"url": "https://github.com/digitalsolution/authtara-sdk.git"
|
|
49
|
+
},
|
|
50
|
+
"bugs": {
|
|
51
|
+
"url": "https://github.com/digitalsolution/authtara-sdk/issues",
|
|
52
|
+
"email": "support@digitalsolution.com"
|
|
53
|
+
},
|
|
54
|
+
"homepage": "https://docs.digitalsolution.com/sdk",
|
|
55
|
+
"dependencies": {
|
|
56
|
+
"jose": "^6.0.11"
|
|
57
|
+
},
|
|
58
|
+
"devDependencies": {
|
|
59
|
+
"@types/node": "^24.0.0",
|
|
60
|
+
"@vitest/coverage-v8": "^4.0.15",
|
|
61
|
+
"tsup": "^8.5.0",
|
|
62
|
+
"typescript": "^5.9.3",
|
|
63
|
+
"vitest": "^4.0.15"
|
|
64
|
+
},
|
|
65
|
+
"engines": {
|
|
66
|
+
"node": ">=18.0.0"
|
|
67
|
+
},
|
|
68
|
+
"publishConfig": {
|
|
69
|
+
"access": "public",
|
|
70
|
+
"registry": "https://registry.npmjs.org/"
|
|
71
|
+
}
|
|
72
|
+
}
|