kavachos 0.1.1 → 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.
- package/LICENSE +21 -0
- package/dist/index.js +25 -0
- package/dist/index.js.map +1 -1
- package/package.json +11 -11
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kavachos",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "The auth OS for AI agents - identity, permissions, delegation, and audit for the agentic era",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -60,15 +60,6 @@
|
|
|
60
60
|
"files": [
|
|
61
61
|
"dist"
|
|
62
62
|
],
|
|
63
|
-
"scripts": {
|
|
64
|
-
"build": "tsup",
|
|
65
|
-
"dev": "tsup --watch",
|
|
66
|
-
"typecheck": "tsc --noEmit",
|
|
67
|
-
"test": "vitest run",
|
|
68
|
-
"test:watch": "vitest watch",
|
|
69
|
-
"coverage": "vitest run --coverage",
|
|
70
|
-
"clean": "rm -rf dist .turbo"
|
|
71
|
-
},
|
|
72
63
|
"keywords": [
|
|
73
64
|
"auth",
|
|
74
65
|
"agent",
|
|
@@ -129,5 +120,14 @@
|
|
|
129
120
|
"mysql2": {
|
|
130
121
|
"optional": true
|
|
131
122
|
}
|
|
123
|
+
},
|
|
124
|
+
"scripts": {
|
|
125
|
+
"build": "tsup",
|
|
126
|
+
"dev": "tsup --watch",
|
|
127
|
+
"typecheck": "tsc --noEmit",
|
|
128
|
+
"test": "vitest run",
|
|
129
|
+
"test:watch": "vitest watch",
|
|
130
|
+
"coverage": "vitest run --coverage",
|
|
131
|
+
"clean": "rm -rf dist .turbo"
|
|
132
132
|
}
|
|
133
|
-
}
|
|
133
|
+
}
|