-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.51 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
{
"name": "mastra-opensandbox",
"version": "0.1.0",
"description": "OpenSandbox support for the Mastra AI agent framework",
"license": "BSD-3-Clause",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.13.0"
},
"peerDependencies": {
"@mastra/core": ">=1.1.0 <2.0.0",
"zod": ">=3.0.0"
},
"dependencies": {
"@alibaba-group/opensandbox": "0.1.6",
"@alibaba-group/opensandbox-code-interpreter": "0.1.3"
},
"devDependencies": {
"@mastra/core": "1.24.1",
"@types/node": "22.15.3",
"eslint": "9.25.1",
"@typescript-eslint/eslint-plugin": "8.31.0",
"@typescript-eslint/parser": "8.31.0",
"eslint-plugin-import-x": "4.11.0",
"prettier": "3.5.3",
"tsup": "8.4.0",
"typescript": "5.8.3",
"vitest": "3.1.2",
"zod": "3.25.3"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint src/ tests/",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"test": "vitest run tests/unit",
"test:watch": "vitest watch tests/unit",
"test:integration": "vitest run tests/integration --test-timeout 120000",
"test:all": "vitest run",
"prepublishOnly": "npm run build"
}
}