-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.5 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "exoagent",
"type": "module",
"version": "0.0.1",
"description": "The OS kernel to safely unleash your agents",
"author": "Ryan Rasti <https://github.com/ryanrasti>",
"license": "MIT",
"homepage": "https://github.com/ryanrasti/exoagent#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ryanrasti/exoagent.git"
},
"bugs": "https://github.com/ryanrasti/exoagent/issues",
"keywords": [
"ai",
"agents",
"llm",
"security",
"capability"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./sql": {
"types": "./dist/sql.d.ts",
"import": "./dist/sql.mjs",
"default": "./dist/sql.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && npm run build:main",
"build:main": "vite build",
"dev": "tsdown --watch",
"lint": "eslint",
"prepublishOnly": "npm run build",
"release": "bumpp",
"start": "tsx src/index.ts",
"test": "vitest --run",
"typecheck": "tsc",
"check:examples": "npm --prefix ./examples run check",
"check": "npm ci && npm run lint && npm run typecheck && npm run build && npm run test && npm run check:examples"
},
"peerDependencies": {
"ai": "^6.0.0"
},
"dependencies": {
"camelcase": "^9.0.0",
"json-schema": "^0.4.0",
"json-schema-to-typescript": "^15.0.0",
"kysely": "^0.28.9",
"secure-json-parse": "^4.1.0",
"tiny-invariant": "^1.3.3",
"zod": "^4.2.1",
"zod-to-json-schema": "^3.25.0"
},
"devDependencies": {
"@antfu/eslint-config": "6.6.1",
"@antfu/ni": "28.0.0",
"@antfu/utils": "9.3.0",
"@electric-sql/pglite": "^0.3.15",
"@standard-schema/spec": "^1.1.0",
"@types/node": "25.0.1",
"acorn": "^8.16.0",
"bumpp": "10.3.2",
"eslint": "9.39.2",
"kysely-pglite-dialect": "^1.2.0",
"lint-staged": "16.2.7",
"publint": "0.3.16",
"simple-git-hooks": "2.13.1",
"tinyexec": "1.0.2",
"tsdown": "0.17.3",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite": "7.2.7",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-externalize-deps": "^0.10.0",
"vitest": "4.0.15",
"vitest-package-exports": "0.1.1",
"yaml": "2.8.2"
},
"lint-staged": {
"*": "eslint --fix"
}
}