Initial codex-flows monorepo
This commit is contained in:
commit
3c446b11a4
642 changed files with 19676 additions and 0 deletions
71
packages/codex-client/package.json
Normal file
71
packages/codex-client/package.json
Normal file
|
|
@ -0,0 +1,71 @@
|
|||
{
|
||||
"name": "@peezy-tech/codex-flows",
|
||||
"version": "0.1.0",
|
||||
"description": "Codex app-server JSON-RPC client, flow helpers, and generated protocol types.",
|
||||
"type": "module",
|
||||
"license": "Apache-2.0",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/peezy-tech/codex-flows.git",
|
||||
"directory": "packages/codex-client"
|
||||
},
|
||||
"keywords": [
|
||||
"codex",
|
||||
"codex-app-server",
|
||||
"json-rpc",
|
||||
"flows"
|
||||
],
|
||||
"sideEffects": false,
|
||||
"types": "./dist/index.d.ts",
|
||||
"files": [
|
||||
"dist",
|
||||
"README.md"
|
||||
],
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
},
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"import": "./dist/index.js"
|
||||
},
|
||||
"./browser": {
|
||||
"types": "./dist/browser.d.ts",
|
||||
"import": "./dist/browser.js"
|
||||
},
|
||||
"./flows": {
|
||||
"types": "./dist/app-server/flows.d.ts",
|
||||
"import": "./dist/app-server/flows.js"
|
||||
},
|
||||
"./rpc": {
|
||||
"types": "./dist/app-server/rpc.d.ts",
|
||||
"import": "./dist/app-server/rpc.js"
|
||||
},
|
||||
"./generated": {
|
||||
"types": "./dist/app-server/generated/index.d.ts",
|
||||
"import": "./dist/app-server/generated/index.js"
|
||||
},
|
||||
"./generated/*": {
|
||||
"types": "./dist/app-server/generated/*.d.ts",
|
||||
"import": "./dist/app-server/generated/*.js"
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"bun": ">=1.3.11"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "bun run clean && tsc -p tsconfig.build.json",
|
||||
"check:types": "tsc --noEmit",
|
||||
"clean": "rm -rf dist",
|
||||
"pack:dry-run": "bun run scripts/pack-dry-run.ts",
|
||||
"prepack": "bun run build",
|
||||
"release:check": "bun run test && bun run check:types && bun run build && bun run smoke:exports && bun run pack:dry-run",
|
||||
"smoke:exports": "bun run scripts/smoke-exports.ts",
|
||||
"test": "bun test test/*.test.ts"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/bun": "^1.3.13",
|
||||
"@types/node": "^22.10.10",
|
||||
"typescript": "^5.9.2"
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue