@flurin17/rapidata-typescript-sdk 0.1.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,77 @@
1
+ {
2
+ "name": "@flurin17/rapidata-typescript-sdk",
3
+ "version": "0.1.0",
4
+ "description": "TypeScript SDK for Rapidata",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Flurin17/rapidata-typescript-sdk.git"
10
+ },
11
+ "homepage": "https://github.com/Flurin17/rapidata-typescript-sdk#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/Flurin17/rapidata-typescript-sdk/issues"
14
+ },
15
+ "main": "./dist/index.cjs",
16
+ "module": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "sideEffects": false,
19
+ "files": [
20
+ "dist",
21
+ "LICENSE",
22
+ "README.md"
23
+ ],
24
+ "exports": {
25
+ ".": {
26
+ "types": "./dist/index.d.ts",
27
+ "import": "./dist/index.js",
28
+ "require": "./dist/index.cjs"
29
+ },
30
+ "./generated": {
31
+ "types": "./dist/generated/index.d.ts",
32
+ "import": "./dist/generated/index.js",
33
+ "require": "./dist/generated/index.cjs"
34
+ },
35
+ "./package.json": "./package.json"
36
+ },
37
+ "engines": {
38
+ "node": ">=25"
39
+ },
40
+ "volta": {
41
+ "node": "25.8.1",
42
+ "npm": "11.11.0"
43
+ },
44
+ "publishConfig": {
45
+ "access": "public"
46
+ },
47
+ "scripts": {
48
+ "build": "tsup",
49
+ "typecheck": "tsc --noEmit",
50
+ "lint": "eslint .",
51
+ "test": "vitest",
52
+ "sync:version": "tsx scripts/sync-version.ts",
53
+ "generate:schemas": "tsx scripts/fetch-schemas.ts",
54
+ "generate:client": "tsx scripts/generate-client.ts",
55
+ "generate": "npm run generate:schemas && npm run generate:client",
56
+ "check:generated": "npm run generate && git diff --exit-code -- openapi src/generated",
57
+ "verify": "npm run lint && npm run typecheck && npm run test -- --run && npm run build"
58
+ },
59
+ "dependencies": {
60
+ "@opentelemetry/api": "1.9.0",
61
+ "open": "10.2.0",
62
+ "undici": "7.16.0"
63
+ },
64
+ "devDependencies": {
65
+ "@eslint/js": "9.23.0",
66
+ "@types/node": "22.15.21",
67
+ "@vitest/coverage-v8": "3.2.4",
68
+ "eslint": "9.23.0",
69
+ "globals": "15.15.0",
70
+ "openapi-typescript-codegen": "^0.29.0",
71
+ "tsup": "8.4.0",
72
+ "tsx": "4.20.3",
73
+ "typescript": "5.8.3",
74
+ "typescript-eslint": "8.29.1",
75
+ "vitest": "3.2.4"
76
+ }
77
+ }