package.json•1.45 kB
{
"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"
}
}