@assetsfirst/pasarguard-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/LICENSE +21 -0
- package/README.md +1 -0
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +10328 -0
- package/dist/index.d.ts +10328 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -0
- package/package.json +57 -0
package/package.json
ADDED
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@assetsfirst/pasarguard-sdk",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Fully typed client SDK for the Pasarguard API, supporting both browser and Node.js environments.",
|
|
5
|
+
"author": "pods611",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"main": "./dist/index.js",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"exports": {
|
|
12
|
+
"import": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"import": "./dist/index.js"
|
|
15
|
+
},
|
|
16
|
+
"require": {
|
|
17
|
+
"types": "./dist/index.d.cts",
|
|
18
|
+
"require": "./dist/index.cjs"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "tsup",
|
|
23
|
+
"rimraf": "rimraf",
|
|
24
|
+
"clean": "rimraf dist",
|
|
25
|
+
"dev": "tsup --watch",
|
|
26
|
+
"codegen": "openapi-generator-cli generate --generator-key v1",
|
|
27
|
+
"openapi-generator-cli": "openapi-generator-cli",
|
|
28
|
+
"format": "prettier --write .",
|
|
29
|
+
"lint": "eslint --fix ."
|
|
30
|
+
},
|
|
31
|
+
"keywords": [],
|
|
32
|
+
"private": false,
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"axios": "^1.12.2",
|
|
35
|
+
"axios-retry": "^4.5.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@eslint/js": "^9.36.0",
|
|
39
|
+
"@openapitools/openapi-generator-cli": "^2.24.0",
|
|
40
|
+
"@types/node": "^24.6.0",
|
|
41
|
+
"esbuild": "^0.25.10",
|
|
42
|
+
"eslint": "^9.36.0",
|
|
43
|
+
"eslint-config-prettier": "^10.1.8",
|
|
44
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
45
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
46
|
+
"prettier": "^3.6.2",
|
|
47
|
+
"globals": "^16.4.0",
|
|
48
|
+
"rimraf": "^6.0.1",
|
|
49
|
+
"ts-node": "^10.9.2",
|
|
50
|
+
"tsup": "^8.5.0",
|
|
51
|
+
"typescript": "^5.9.2",
|
|
52
|
+
"typescript-eslint": "^8.45.0"
|
|
53
|
+
},
|
|
54
|
+
"files": [
|
|
55
|
+
"dist"
|
|
56
|
+
]
|
|
57
|
+
}
|