@appaloft/sdk 0.12.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/package.json ADDED
@@ -0,0 +1,36 @@
1
+ {
2
+ "name": "@appaloft/sdk",
3
+ "version": "0.12.0",
4
+ "description": "TypeScript operation client for the Appaloft HTTP API.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "types": "./dist/index.d.ts",
15
+ "files": [
16
+ "dist"
17
+ ],
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "devDependencies": {
22
+ "@appaloft/application": "workspace:*",
23
+ "@appaloft/core": "workspace:*",
24
+ "@appaloft/openapi": "workspace:*",
25
+ "@appaloft/orpc": "workspace:*",
26
+ "@appaloft/sdk-generator": "workspace:*",
27
+ "elysia": "^1.4.28"
28
+ },
29
+ "scripts": {
30
+ "build": "bun run generate:operations && bun build src/index.ts src/generated-operations.ts --target node --format esm --packages external --outdir dist && tsc -p tsconfig.build.json",
31
+ "generate:operations": "bun run ../../scripts/release/generate-typescript-sdk-operations.ts",
32
+ "lint": "biome check package.json tsconfig.json tsconfig.build.json src/index.ts test",
33
+ "test": "bun test",
34
+ "typecheck": "tsgo -p tsconfig.json --noEmit --checkers 4"
35
+ }
36
+ }