@kya-os/agentshield-nextjs 0.2.8 → 0.2.9

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 +21 -22
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kya-os/agentshield-nextjs",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Next.js middleware for AgentShield AI agent detection",
5
5
  "keywords": [
6
6
  "nextjs",
@@ -95,22 +95,6 @@
95
95
  "engines": {
96
96
  "node": ">=18.0.0"
97
97
  },
98
- "scripts": {
99
- "build": "tsup",
100
- "build:watch": "tsup --watch",
101
- "predev": "pnpm --filter=@kya-os/agentshield-shared build && pnpm --filter=@kya-os/agentshield build",
102
- "dev": "tsup --watch",
103
- "clean": "rimraf dist .tsbuildinfo",
104
- "test": "vitest run",
105
- "test:watch": "vitest",
106
- "test:coverage": "vitest run --coverage",
107
- "type-check": "tsc --noEmit",
108
- "lint": "eslint src --ext .ts,.tsx",
109
- "lint:fix": "eslint src --ext .ts,.tsx --fix",
110
- "format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
111
- "format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
112
- "prepublishOnly": "pnpm build && pnpm test"
113
- },
114
98
  "devDependencies": {
115
99
  "@testing-library/react": "^14.2.1",
116
100
  "@testing-library/react-hooks": "^8.0.1",
@@ -141,10 +125,25 @@
141
125
  },
142
126
  "sideEffects": false,
143
127
  "dependencies": {
144
- "@kya-os/agentshield": "workspace:*",
145
- "@kya-os/agentshield-shared": "workspace:*",
146
- "@kya-os/agentshield-wasm-runtime": "workspace:*",
147
128
  "@noble/ed25519": "^2.2.3",
148
- "@noble/hashes": "^2.0.1"
129
+ "@noble/hashes": "^2.0.1",
130
+ "@kya-os/agentshield": "0.1.39",
131
+ "@kya-os/agentshield-shared": "0.2.3",
132
+ "@kya-os/agentshield-wasm-runtime": "0.1.6"
133
+ },
134
+ "scripts": {
135
+ "build": "tsup",
136
+ "build:watch": "tsup --watch",
137
+ "predev": "pnpm --filter=@kya-os/agentshield-shared build && pnpm --filter=@kya-os/agentshield build",
138
+ "dev": "tsup --watch",
139
+ "clean": "rimraf dist .tsbuildinfo",
140
+ "test": "vitest run",
141
+ "test:watch": "vitest",
142
+ "test:coverage": "vitest run --coverage",
143
+ "type-check": "tsc --noEmit",
144
+ "lint": "eslint src --ext .ts,.tsx",
145
+ "lint:fix": "eslint src --ext .ts,.tsx --fix",
146
+ "format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
147
+ "format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\""
149
148
  }
150
- }
149
+ }