mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
57 lines
1.5 KiB
JSON
57 lines
1.5 KiB
JSON
{
|
|
"name": "openwork-server",
|
|
"version": "0.11.182",
|
|
"description": "Filesystem-backed API for OpenWork remote clients",
|
|
"type": "module",
|
|
"bin": {
|
|
"openwork-server": "bin/openwork-server.mjs"
|
|
},
|
|
"scripts": {
|
|
"dev": "OPENWORK_DEV_MODE=1 bun src/cli.ts",
|
|
"test": "bun test",
|
|
"build": "tsc -p tsconfig.json",
|
|
"build:bin": "bun build --compile src/cli.ts --outfile dist/bin/openwork-server",
|
|
"build:bin:all": "bun ./script/build.ts --outdir dist/bin --target bun-darwin-arm64 --target bun-darwin-x64 --target bun-linux-x64 --target bun-linux-arm64 --target bun-windows-x64",
|
|
"start": "bun dist/cli.js",
|
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
"prepublishOnly": "pnpm build:bin"
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/different-ai/openwork.git",
|
|
"directory": "apps/server"
|
|
},
|
|
"homepage": "https://github.com/different-ai/openwork/tree/dev/apps/server",
|
|
"bugs": {
|
|
"url": "https://github.com/different-ai/openwork/issues"
|
|
},
|
|
"keywords": [
|
|
"openwork",
|
|
"server",
|
|
"opencode",
|
|
"headless",
|
|
"cli"
|
|
],
|
|
"license": "MIT",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"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"
|
|
}
|