package.json
1 { 2 "name": "@alibaba-group/opensandbox-code-interpreter", 3 "version": "0.1.4", 4 "description": "OpenSandbox Code Interpreter TypeScript/JavaScript SDK", 5 "license": "Apache-2.0", 6 "type": "module", 7 "main": "./dist/index.js", 8 "types": "./dist/index.d.ts", 9 "exports": { 10 ".": { 11 "types": "./dist/index.d.ts", 12 "import": "./dist/index.js", 13 "require": "./dist/cjs/index.cjs", 14 "default": "./dist/index.js" 15 } 16 }, 17 "browser": "./dist/index.js", 18 "sideEffects": false, 19 "repository": { 20 "type": "git", 21 "url": "https://github.com/alibaba/OpenSandbox.git" 22 }, 23 "bugs": { 24 "url": "https://github.com/alibaba/OpenSandbox/issues" 25 }, 26 "homepage": "https://open-sandbox.ai", 27 "files": [ 28 "dist", 29 "src" 30 ], 31 "engines": { 32 "node": ">=20" 33 }, 34 "packageManager": "pnpm@9.15.0", 35 "scripts": { 36 "build": "tsup", 37 "test": "pnpm run build && node --test tests/*.test.mjs", 38 "lint": "eslint src --max-warnings 0", 39 "typecheck": "tsc -p tsconfig.json --noEmit", 40 "clean": "rm -rf dist" 41 }, 42 "dependencies": { 43 "@alibaba-group/opensandbox": "workspace:^" 44 }, 45 "devDependencies": { 46 "@eslint/js": "^9.39.4", 47 "eslint": "^9.39.4", 48 "tsup": "^8.5.1", 49 "typescript": "^5.7.2", 50 "typescript-eslint": "^8.59.0" 51 } 52 }