-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.96 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.96 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
{
"name": "@danieliser/codemode-unified",
"version": "0.1.0",
"description": "Local-first, protocol-agnostic code execution platform for AI agents",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"codemode": "dist/cli.js",
"codemode-mcp": "dist/mcp-server.js"
},
"exports": {
".": "./dist/index.js",
"./mcp": "./dist/mcp-server.js",
"./runtime": "./dist/runtime/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx watch src/server.ts",
"dev:quickjs": "tsx watch src/server.ts --runtime=quickjs",
"dev:bun": "tsx watch src/server.ts --runtime=bun",
"dev:deno": "tsx watch src/server.ts --runtime=deno",
"dev:mcp": "tsx src/mcp-server.ts",
"build": "tsc && chmod +x dist/mcp-server.js",
"start": "node dist/server.js",
"start:mcp": "node dist/mcp-server.js",
"test": "vitest",
"test:runtimes": "vitest run src/runtime/__tests__/runtime-suite.test.ts",
"test:constraints": "vitest run src/runtime/__tests__/constraints.test.ts",
"test:runtime:quickjs": "vitest run src/runtime/__tests__/runtime-suite.test.ts -t QuickJS",
"test:runtime:bun": "vitest run src/runtime/__tests__/runtime-suite.test.ts -t Bun",
"test:runtime:deno": "vitest run src/runtime/__tests__/runtime-suite.test.ts -t Deno",
"test:runtime:isolated-vm": "vitest run src/runtime/__tests__/runtime-suite.test.ts -t isolated-vm",
"test:runtime:e2b": "vitest run src/runtime/__tests__/runtime-suite.test.ts -t E2B",
"test:coverage": "vitest --coverage",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"code-execution",
"sandbox",
"typescript",
"ai-agents",
"quickjs",
"protocol-agnostic"
],
"author": "Daniel Iser <danieliser@users.noreply.github.com>",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"quickjs-emscripten": "^0.23.0",
"zod": "^3.22.0",
"fastify": "^4.24.0",
"@fastify/cors": "^9.0.0",
"@fastify/websocket": "^10.0.0",
"@fastify/jwt": "^7.2.0",
"@modelcontextprotocol/sdk": "^0.4.0",
"yaml": "^2.3.0",
"pino": "^8.16.0",
"pino-pretty": "^10.2.0",
"jose": "^5.1.0",
"dotenv": "^16.3.0",
"json-schema-to-typescript": "^15.0.3",
"prettier": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/ws": "^8.5.0",
"@types/json-schema": "^7.0.15",
"typescript": "^5.3.0",
"tsx": "^4.6.0",
"vitest": "^1.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danieliser/codemode-unified.git"
},
"bugs": {
"url": "https://github.com/danieliser/codemode-unified/issues"
},
"homepage": "https://github.com/danieliser/codemode-unified#readme"
}