@avallon-labs/sdk 0.0.0-0ca09b5e
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 +135 -0
- package/dist/index.d.ts +957 -0
- package/dist/index.js +512 -0
- package/dist/index.js.map +1 -0
- package/openapi.yaml +986 -0
- package/package.json +66 -0
package/package.json
ADDED
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@avallon-labs/sdk",
|
|
3
|
+
"version": "0.0.0-0ca09b5e",
|
|
4
|
+
"description": "Avallon API SDK - generated from OpenAPI",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": [
|
|
15
|
+
"dist",
|
|
16
|
+
"openapi.yaml"
|
|
17
|
+
],
|
|
18
|
+
"scripts": {
|
|
19
|
+
"generate": "orval && npm run generate:index",
|
|
20
|
+
"generate:index": "cd generated/endpoints && ls -d */ | sed 's|/||' | xargs -I{} echo 'export * from \"./{}/{}\"' > index.ts",
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"format": "prettier --write 'src' 'e2e'",
|
|
23
|
+
"format:check": "prettier --check 'src' 'e2e'",
|
|
24
|
+
"lint": "eslint src e2e --max-warnings=0",
|
|
25
|
+
"test": "vitest run",
|
|
26
|
+
"test:watch": "vitest",
|
|
27
|
+
"test:e2e": "vitest run --config vitest.e2e.config.ts",
|
|
28
|
+
"prepublishOnly": "npm run generate && npm run build"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@typescript-eslint/eslint-plugin": "^8.42.0",
|
|
32
|
+
"@typescript-eslint/parser": "^8.42.0",
|
|
33
|
+
"eslint": "^9.34.0",
|
|
34
|
+
"eslint-config-prettier": "^9.1.0",
|
|
35
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
36
|
+
"orval": "^8.1.0",
|
|
37
|
+
"prettier": "^3.4.2",
|
|
38
|
+
"react": "^19.0.0",
|
|
39
|
+
"swr": "^2.0.0",
|
|
40
|
+
"tsup": "^8.5.1",
|
|
41
|
+
"typescript": "^5.0.0",
|
|
42
|
+
"vitest": "^3.0.0"
|
|
43
|
+
},
|
|
44
|
+
"peerDependencies": {
|
|
45
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
46
|
+
"swr": "^2.0.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependenciesMeta": {
|
|
49
|
+
"react": {
|
|
50
|
+
"optional": true
|
|
51
|
+
},
|
|
52
|
+
"swr": {
|
|
53
|
+
"optional": true
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
"engines": {
|
|
57
|
+
"node": ">=18"
|
|
58
|
+
},
|
|
59
|
+
"keywords": [
|
|
60
|
+
"avallon",
|
|
61
|
+
"sdk",
|
|
62
|
+
"api",
|
|
63
|
+
"voice-ai"
|
|
64
|
+
],
|
|
65
|
+
"license": "MIT"
|
|
66
|
+
}
|