forked from zerocore-ai/microsandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.42 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.42 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
{
"name": "microsandbox",
"version": "0.1.1",
"description": "TypeScript SDK for creating and managing secure sandboxes for code execution",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src --ext .ts",
"prepare": "npm run build",
"example:node": "ts-node examples/node.ts",
"example:python": "ts-node examples/python.ts",
"example:command": "ts-node examples/command.ts",
"example:metrics": "ts-node examples/metrics.ts"
},
"keywords": [
"microsandbox",
"sdk",
"sandbox",
"security",
"code-execution",
"typescript"
],
"author": "Microsandbox Team <team@microsandbox.dev>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/microsandbox/microsandbox.git"
},
"bugs": {
"url": "https://github.com/microsandbox/microsandbox/issues"
},
"homepage": "https://github.com/microsandbox/microsandbox",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.19.111",
"@types/node-fetch": "^2.6.4",
"@types/uuid": "^9.0.1",
"eslint": "^8.36.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"dotenv": "^16.3.1",
"node-fetch": "^2.6.12",
"uuid": "^9.0.0"
}
}