@kya-os/agentshield-nextjs 0.1.35 → 0.1.36
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.
- package/dist/index.js +3 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +17 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kya-os/agentshield-nextjs",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.36",
|
|
4
4
|
"description": "Next.js middleware for AgentShield AI agent detection",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"nextjs",
|
|
@@ -74,6 +74,21 @@
|
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=18.0.0"
|
|
76
76
|
},
|
|
77
|
+
"scripts": {
|
|
78
|
+
"build": "tsup",
|
|
79
|
+
"build:watch": "tsup --watch",
|
|
80
|
+
"dev": "tsup --watch",
|
|
81
|
+
"clean": "rimraf dist .tsbuildinfo",
|
|
82
|
+
"test": "vitest run",
|
|
83
|
+
"test:watch": "vitest",
|
|
84
|
+
"test:coverage": "vitest run --coverage",
|
|
85
|
+
"type-check": "tsc --noEmit",
|
|
86
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
87
|
+
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
88
|
+
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
|
|
89
|
+
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\"",
|
|
90
|
+
"prepublishOnly": "pnpm build && pnpm test"
|
|
91
|
+
},
|
|
77
92
|
"devDependencies": {
|
|
78
93
|
"@testing-library/react": "^14.2.1",
|
|
79
94
|
"@testing-library/react-hooks": "^8.0.1",
|
|
@@ -99,19 +114,5 @@
|
|
|
99
114
|
"sideEffects": false,
|
|
100
115
|
"dependencies": {
|
|
101
116
|
"@kya-os/agentshield": "^0.1.35"
|
|
102
|
-
},
|
|
103
|
-
"scripts": {
|
|
104
|
-
"build": "tsup",
|
|
105
|
-
"build:watch": "tsup --watch",
|
|
106
|
-
"dev": "tsup --watch",
|
|
107
|
-
"clean": "rimraf dist .tsbuildinfo",
|
|
108
|
-
"test": "vitest run",
|
|
109
|
-
"test:watch": "vitest",
|
|
110
|
-
"test:coverage": "vitest run --coverage",
|
|
111
|
-
"type-check": "tsc --noEmit",
|
|
112
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
113
|
-
"lint:fix": "eslint src --ext .ts,.tsx --fix",
|
|
114
|
-
"format": "prettier --write \"src/**/*.{ts,tsx,json,md}\"",
|
|
115
|
-
"format:check": "prettier --check \"src/**/*.{ts,tsx,json,md}\""
|
|
116
117
|
}
|
|
117
|
-
}
|
|
118
|
+
}
|