@sortsys/v2-client 0.1.2 → 0.1.3

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 (2) hide show
  1. package/dist/index.d.ts +2268 -220
  2. package/package.json +13 -16
package/package.json CHANGED
@@ -1,32 +1,29 @@
1
1
  {
2
2
  "name": "@sortsys/v2-client",
3
- "version": "0.1.2",
4
- "description": "TRPC client bundle for sortsys-api-v2",
5
- "type": "module",
3
+ "version": "0.1.3",
6
4
  "main": "dist/index.js",
7
- "types": "dist/index.d.ts",
5
+ "devDependencies": {
6
+ "dts-bundle-generator": "^9.5.1"
7
+ },
8
8
  "exports": {
9
9
  "import": "./dist/index.js",
10
10
  "types": "./dist/index.d.ts",
11
11
  "default": "./dist/index.js"
12
12
  },
13
- "publishConfig": {
14
- "access": "public"
15
- },
13
+ "description": "TRPC client bundle for sortsys-api-v2",
16
14
  "files": [
17
15
  "dist"
18
16
  ],
19
- "scripts": {
20
- "build": "rm -rf dist && bun build src/index.ts --production --outfile dist/index.js && bunx dts-bundle-generator -o dist/index.d.ts src/index.ts --no-check"
17
+ "publishConfig": {
18
+ "access": "public"
21
19
  },
22
- "devDependencies": {
23
- "@types/node": "^25.0.1",
24
- "dts-bundle-generator": "^9.5.1",
25
- "superjson": "^2.2.6"
20
+ "scripts": {
21
+ "build": "rm -rf dist && bun build src/index.ts --production --outfile dist/index.js && bunx dts-bundle-generator -o dist/index.d.ts src/index.ts --no-check --external-inlines=@trpc/server @trpc/client express-serve-static-core rxjs qs range-parser --export-referenced-types=false"
26
22
  },
23
+ "type": "module",
24
+ "types": "dist/index.d.ts",
27
25
  "dependencies": {
28
- "@trpc/client": "^11.7.2",
29
- "@trpc/server": "^11.7.2",
30
- "express-serve-static-core": "^0.1.1"
26
+ "@types/node": "^25.0.1",
27
+ "@types/send": "^1.2.1"
31
28
  }
32
29
  }