mirror of
https://github.com/different-ai/openwork
synced 2026-05-10 17:22:05 +02:00
30 lines
836 B
JSON
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"
|
|
}
|