kavachos 0.0.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.
package/package.json ADDED
@@ -0,0 +1,100 @@
1
+ {
2
+ "name": "kavachos",
3
+ "version": "0.0.1",
4
+ "description": "The auth OS for AI agents - identity, permissions, delegation, and audit for the agentic era",
5
+ "type": "module",
6
+ "main": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ },
13
+ "./agent": {
14
+ "types": "./dist/agent/index.d.ts",
15
+ "import": "./dist/agent/index.js"
16
+ },
17
+ "./auth": {
18
+ "types": "./dist/auth/index.d.ts",
19
+ "import": "./dist/auth/index.js"
20
+ },
21
+ "./mcp": {
22
+ "types": "./dist/mcp/index.d.ts",
23
+ "import": "./dist/mcp/index.js"
24
+ },
25
+ "./permission": {
26
+ "types": "./dist/permission/index.d.ts",
27
+ "import": "./dist/permission/index.js"
28
+ },
29
+ "./audit": {
30
+ "types": "./dist/audit/index.d.ts",
31
+ "import": "./dist/audit/index.js"
32
+ }
33
+ },
34
+ "files": [
35
+ "dist"
36
+ ],
37
+ "keywords": [
38
+ "auth",
39
+ "agent",
40
+ "mcp",
41
+ "ai",
42
+ "identity",
43
+ "authentication",
44
+ "authorization",
45
+ "oauth",
46
+ "audit",
47
+ "permissions"
48
+ ],
49
+ "author": "KavachOS <hello@kavachos.com>",
50
+ "license": "MIT",
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "https://github.com/kavachos/kavachos.git",
54
+ "directory": "packages/core"
55
+ },
56
+ "homepage": "https://kavachos.com",
57
+ "dependencies": {
58
+ "drizzle-orm": "^0.41.0",
59
+ "jose": "^6.0.0",
60
+ "zod": "^3.24.0"
61
+ },
62
+ "devDependencies": {
63
+ "@types/better-sqlite3": "^7.6.13",
64
+ "@types/node": "^22.0.0",
65
+ "@types/pg": "^8.20.0",
66
+ "better-sqlite3": "^11.0.0",
67
+ "tsup": "^8.4.0",
68
+ "typescript": "^5.8.0",
69
+ "vitest": "^3.0.0"
70
+ },
71
+ "peerDependencies": {
72
+ "@libsql/client": ">=0.6.0",
73
+ "better-sqlite3": ">=9.0.0",
74
+ "mysql2": ">=3.0.0",
75
+ "pg": ">=8.0.0"
76
+ },
77
+ "peerDependenciesMeta": {
78
+ "better-sqlite3": {
79
+ "optional": true
80
+ },
81
+ "@libsql/client": {
82
+ "optional": true
83
+ },
84
+ "pg": {
85
+ "optional": true
86
+ },
87
+ "mysql2": {
88
+ "optional": true
89
+ }
90
+ },
91
+ "scripts": {
92
+ "build": "tsup",
93
+ "dev": "tsup --watch",
94
+ "typecheck": "tsc --noEmit",
95
+ "test": "vitest run",
96
+ "test:watch": "vitest watch",
97
+ "coverage": "vitest run --coverage",
98
+ "clean": "rm -rf dist .turbo"
99
+ }
100
+ }