@possibl/rcrt-sdk 0.5.0 → 0.5.1

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.
Files changed (1) hide show
  1. package/package.json +9 -9
package/package.json CHANGED
@@ -1,23 +1,23 @@
1
1
  {
2
2
  "name": "@possibl/rcrt-sdk",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "TypeScript SDK for the RCRT multi-tenant AI BaaS — isomorphic (web + node + React Native)",
5
5
  "type": "module",
6
6
  "//": "In-repo consumers (tests, dashboard) see raw src/*.ts via `main`/`exports`. publishConfig overrides these at publish time to point at compiled dist/ so npm installs are clean JS + .d.ts.",
7
- "main": "./src/index.ts",
8
- "types": "./src/index.ts",
7
+ "main": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
9
  "exports": {
10
10
  ".": {
11
- "types": "./src/index.ts",
12
- "default": "./src/index.ts"
11
+ "types": "./dist/index.d.ts",
12
+ "default": "./dist/index.js"
13
13
  },
14
14
  "./types": {
15
- "types": "./src/types/index.ts",
16
- "default": "./src/types/index.ts"
15
+ "types": "./dist/types/index.d.ts",
16
+ "default": "./dist/types/index.js"
17
17
  },
18
18
  "./generated": {
19
- "types": "./src/generated/index.ts",
20
- "default": "./src/generated/index.ts"
19
+ "types": "./dist/generated/index.d.ts",
20
+ "default": "./dist/generated/index.js"
21
21
  }
22
22
  },
23
23
  "publishConfig": {