-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.54 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.54 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
{
"name": "ignite",
"version": "0.9.0",
"private": true,
"description": "Secure JS/TS code execution in Docker with sandboxing for AI agents, untrusted code, and microservices",
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "bun run --cwd packages/shared build && bun run --cwd packages/core build && bun run --cwd packages/http build && bun run --cwd packages/cli build",
"build:binaries": "bun run scripts/build-binaries.ts",
"dev": "bun run --filter './packages/*' dev",
"clean": "bun run --filter './packages/*' clean && rm -rf bin dist",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest --runInBand",
"test:unit": "NODE_OPTIONS='--experimental-vm-modules' jest --testPathIgnorePatterns=docker-execution --testPathIgnorePatterns=server",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage --runInBand",
"release": "bun run scripts/release.ts"
},
"devDependencies": {
"@elysiajs/cors": "^1.4.1",
"@jest/globals": "^30.2.0",
"@types/bun": "latest",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"elysia": "^1.4.22",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"typescript": "^5.3.0"
},
"engines": {
"bun": ">=1.3.0"
},
"dependencies": {
"zario": "^0.4.5"
}
}