@computesdk/daytona
Version:
Daytona provider for ComputeSDK
61 lines • 1.43 kB
JSON
{
"name": "@computesdk/daytona",
"version": "1.1.1",
"description": "Daytona provider for ComputeSDK",
"author": "Garrison",
"license": "MIT",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@daytonaio/sdk": "^0.25.0",
"computesdk": "1.1.1"
},
"keywords": [
"daytona",
"sandbox",
"code-execution",
"python",
"cloud",
"compute"
],
"repository": {
"type": "git",
"url": "https://github.com/computesdk/computesdk.git",
"directory": "packages/daytona"
},
"homepage": "https://github.com/computesdk/computesdk/tree/main/packages/daytona",
"bugs": {
"url": "https://github.com/computesdk/computesdk/issues"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.37.0",
"rimraf": "^5.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0",
"@computesdk/test-utils": "1.1.0"
},
"scripts": {
"build": "tsup",
"clean": "rimraf dist",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint"
}
}