@ancatag/n-r 0.2.13 → 0.2.14

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 +14 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ancatag/n-r",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
4
4
  "description": "Official Node.js/TypeScript SDK for Nova AI API with route-config-based orchestration",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,17 +15,6 @@
15
15
  "dist",
16
16
  "README.md"
17
17
  ],
18
- "scripts": {
19
- "build": "tsc",
20
- "dev": "tsc --watch",
21
- "clean": "rm -rf dist",
22
- "type-check": "tsc --noEmit",
23
- "test": "vitest run",
24
- "test:watch": "vitest",
25
- "test:cov": "vitest run --coverage",
26
- "prepublishOnly": "pnpm clean && pnpm build",
27
- "publish:npm": "pnpm publish --access public --no-git-checks"
28
- },
29
18
  "keywords": [
30
19
  "nova",
31
20
  "ai",
@@ -59,8 +48,18 @@
59
48
  },
60
49
  "type": "module",
61
50
  "dependencies": {
62
- "@ancatag/nova-proto": "workspace:*",
63
51
  "@grpc/grpc-js": "^1.14.3",
64
- "@grpc/proto-loader": "^0.8.0"
52
+ "@grpc/proto-loader": "^0.8.0",
53
+ "@ancatag/nova-proto": "0.1.0"
54
+ },
55
+ "scripts": {
56
+ "build": "tsc",
57
+ "dev": "tsc --watch",
58
+ "clean": "rm -rf dist",
59
+ "type-check": "tsc --noEmit",
60
+ "test": "vitest run",
61
+ "test:watch": "vitest",
62
+ "test:cov": "vitest run --coverage",
63
+ "publish:npm": "pnpm publish --access public --no-git-checks"
65
64
  }
66
- }
65
+ }