exoagent 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,84 @@
1
+ {
2
+ "name": "exoagent",
3
+ "type": "module",
4
+ "version": "0.0.1",
5
+ "description": " The OS kernel to safely unleash your agents",
6
+ "author": "Ryan Rasti <https://github.com/ryanrasti>",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/ryanrasti/exoagent#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/ryanrasti/exoagent.git"
12
+ },
13
+ "bugs": "https://github.com/ryanrasti/exoagent/issues",
14
+ "keywords": [
15
+ "ai",
16
+ "agents",
17
+ "llm",
18
+ "security",
19
+ "capability"
20
+ ],
21
+ "sideEffects": false,
22
+ "exports": {
23
+ ".": "./dist/index.mjs",
24
+ "./package.json": "./package.json"
25
+ },
26
+ "main": "./dist/index.mjs",
27
+ "module": "./dist/index.mjs",
28
+ "types": "./dist/index.d.mts",
29
+ "files": [
30
+ "dist"
31
+ ],
32
+ "scripts": {
33
+ "clean": "rm -rf dist",
34
+ "build": "npm run clean && npm run build:dts && npm run build:main && npm run build:runtime-bundle && npm run build:test-deps",
35
+ "build:main": "esbuild src/index.ts --bundle --format=esm --target=es2022 --outfile=dist/index.mjs --packages=external",
36
+ "build:dts": "tsdown --dts-only",
37
+ "build:runtime-bundle": "esbuild src/code-mode-runtime.ts --bundle --format=esm --target=es2022 --outfile=dist/code-mode-runtime.mjs --packages=external",
38
+ "build:test-deps": "npm run build:runtime-bundle && tsdown --config tsdown.test-deps.config.ts",
39
+ "dev": "tsdown --watch",
40
+ "lint": "eslint",
41
+ "prepublishOnly": "npm run build",
42
+ "release": "bumpp",
43
+ "start": "tsx src/index.ts",
44
+ "test": "vitest --run",
45
+ "typecheck": "tsc",
46
+ "ci:capnweb": "cd packages/capnweb && npm ci && npm run build",
47
+ "ci": "npm run ci:capnweb && npm ci && npm run lint && npm run typecheck && npm run build && npm run test"
48
+ },
49
+ "dependencies": {
50
+ "ai": "^6.0.3",
51
+ "camelcase": "^9.0.0",
52
+ "json-schema": "^0.4.0",
53
+ "json-schema-to-typescript": "^15.0.4",
54
+ "kysely": "^0.28.9",
55
+ "tiny-invariant": "^1.3.3",
56
+ "zod": "^4.2.1",
57
+ "zod-to-json-schema": "^3.25.0"
58
+ },
59
+ "devDependencies": {
60
+ "@antfu/eslint-config": "6.6.1",
61
+ "@antfu/ni": "28.0.0",
62
+ "@antfu/utils": "9.3.0",
63
+ "@electric-sql/pglite": "^0.3.15",
64
+ "@standard-schema/spec": "^1.1.0",
65
+ "@types/node": "25.0.1",
66
+ "bumpp": "10.3.2",
67
+ "eslint": "9.39.2",
68
+ "kysely-pglite-dialect": "^1.2.0",
69
+ "lint-staged": "16.2.7",
70
+ "publint": "0.3.16",
71
+ "simple-git-hooks": "2.13.1",
72
+ "tinyexec": "1.0.2",
73
+ "tsdown": "0.17.3",
74
+ "tsx": "4.21.0",
75
+ "typescript": "5.9.3",
76
+ "vite": "7.2.7",
77
+ "vitest": "4.0.15",
78
+ "vitest-package-exports": "0.1.1",
79
+ "yaml": "2.8.2"
80
+ },
81
+ "lint-staged": {
82
+ "*": "eslint --fix"
83
+ }
84
+ }