Files
openwork/packages/server/package.json
2026-01-28 21:20:26 -08:00

30 lines
836 B
JSON

{
"name": "@different-ai/openwork-server",
"version": "0.1.0",
"private": true,
"type": "module",
"bin": {
"openwork-server": "dist/cli.js"
},
"scripts": {
"dev": "bun src/cli.ts",
"build": "tsc -p tsconfig.json",
"build:bin": "bun ./script/build.ts --outdir dist/bin",
"build:bin:all": "bun ./script/build.ts --outdir dist/bin --target bun-darwin-arm64 --target bun-darwin-x64 --target bun-linux-x64 --target bun-windows-x64",
"start": "bun dist/cli.js",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"dependencies": {
"jsonc-parser": "^3.2.1",
"minimatch": "^10.0.1",
"yaml": "^2.6.1"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@types/minimatch": "^5.1.2",
"bun-types": "^1.3.6",
"typescript": "^5.6.3"
},
"packageManager": "pnpm@10.27.0"
}