@solongate/proxy 0.49.0 → 0.49.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.
File without changes
package/dist/index.js CHANGED
File without changes
package/dist/init.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@solongate/proxy",
3
- "version": "0.49.0",
3
+ "version": "0.49.1",
4
4
  "description": "AI tool security proxy — protect any AI tool server with customizable policies, path/command constraints, rate limiting, and audit logging. Zero code changes required.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -27,6 +27,14 @@
27
27
  "hooks",
28
28
  "README.md"
29
29
  ],
30
+ "scripts": {
31
+ "build": "tsup && pnpm build:types && pnpm build:hooks",
32
+ "build:types": "node scripts/build-types.mjs",
33
+ "build:hooks": "node scripts/bundle-hooks.mjs",
34
+ "dev": "tsx src/index.ts",
35
+ "typecheck": "tsc --noEmit",
36
+ "clean": "rm -rf dist .turbo"
37
+ },
30
38
  "keywords": [
31
39
  "ai-tool-security",
32
40
  "ai-tool-proxy",
@@ -57,24 +65,13 @@
57
65
  "@modelcontextprotocol/sdk": "^1.26.0",
58
66
  "zod": "^3.25.0"
59
67
  },
60
- "optionalDependencies": {
61
- "@huggingface/transformers": ">=3.0.0"
62
- },
63
68
  "devDependencies": {
64
69
  "@open-policy-agent/opa-wasm": "^1.10.0",
65
70
  "chalk": "^5.3.0",
71
+ "@solongate/tsconfig": "workspace:*",
66
72
  "esbuild": "^0.19.12",
67
73
  "tsup": "^8.3.0",
68
74
  "tsx": "^4.19.0",
69
- "typescript": "^5.7.0",
70
- "@solongate/tsconfig": "0.0.0"
71
- },
72
- "scripts": {
73
- "build": "tsup && pnpm build:types && pnpm build:hooks",
74
- "build:types": "node scripts/build-types.mjs",
75
- "build:hooks": "node scripts/bundle-hooks.mjs",
76
- "dev": "tsx src/index.ts",
77
- "typecheck": "tsc --noEmit",
78
- "clean": "rm -rf dist .turbo"
75
+ "typescript": "^5.7.0"
79
76
  }
80
- }
77
+ }