devbox-sdk
Version:
A lightweight development environment management tool based on Kubernetes
66 lines • 1.56 kB
JSON
{
"name": "devbox-sdk",
"version": "0.0.4",
"description": "A lightweight development environment management tool based on Kubernetes",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "NODE_ENV=production tsup",
"build:dev": "NODE_ENV=development tsup --watch",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"clean": "rimraf dist",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"dotenv": "^16.4.5",
"tsup": "^8.3.5",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"peerDependencies": {
"@types/node": ">=16"
},
"engines": {
"node": ">=16"
},
"dependencies": {
"@kubernetes/client-node": "^0.22.2",
"nanoid": "^5.0.8"
},
"author": {
"name": "JingYang",
"email": "peterjingyang@gmail.com",
"url": "https://github.com/zjy365"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/labring/sealos"
},
"sideEffects": false,
"keywords": [
"kubernetes",
"node",
"server-only",
"development"
]
}