@rearray/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,44 @@
1
+ {
2
+ "name": "@rearray/sdk",
3
+ "version": "0.1.0",
4
+ "description": "Node SDK for the reArray Integration API",
5
+ "license": "MIT",
6
+ "type": "module",
7
+ "sideEffects": false,
8
+ "main": "./dist/index.cjs",
9
+ "module": "./dist/index.js",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "import": {
14
+ "types": "./dist/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ },
17
+ "require": {
18
+ "types": "./dist/index.d.cts",
19
+ "default": "./dist/index.cjs"
20
+ }
21
+ }
22
+ },
23
+ "files": [
24
+ "dist",
25
+ "openapi"
26
+ ],
27
+ "engines": {
28
+ "node": ">=18"
29
+ },
30
+ "scripts": {
31
+ "codegen": "openapi-typescript ./openapi/integration-api.json -o src/generated/openapi.ts",
32
+ "build": "tsup",
33
+ "typecheck": "tsc --noEmit",
34
+ "test": "node --import tsx --test src/*.test.ts",
35
+ "prepublishOnly": "npm run codegen && npm run typecheck && npm run build && npm test"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^26.0.1",
39
+ "openapi-typescript": "^7.8.0",
40
+ "tsup": "^8.5.0",
41
+ "tsx": "^4.19.2",
42
+ "typescript": "^5.8.3"
43
+ }
44
+ }