75 lines
1.8 KiB
JSON
75 lines
1.8 KiB
JSON
{
|
|
"name": "@peezy.tech/codex-flows",
|
|
"version": "0.2.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"
|
|
},
|
|
"./auth": {
|
|
"types": "./dist/auth.d.ts",
|
|
"import": "./dist/auth.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"
|
|
}
|
|
}
|