ograph/packages/cli/package.json
小橘 d84a860d15 feat: initial ograph repo — engine (85 tests) + cli (31 tests)
Extracted from uncaged monorepo (oc-xiaoju/uncaged).
Resolves oc-xiaoju/uncaged#224.

- @uncaged/ograph: CF Worker engine (events, projections, reactions)
- @uncaged/ograph-cli: CLI for managing OGraph instances
- Removed @uncaged/oid dependency (unused)
- 116 tests, all passing
- CI: GitHub Actions

小橘 🍊(NEKO Team)
2026-04-12 23:43:56 +00:00

47 lines
874 B
JSON

{
"name": "@uncaged/ograph-cli",
"version": "0.1.0",
"description": "OGraph CLI for object-graph database operations",
"type": "module",
"bin": {
"ograph": "./dist/index.js"
},
"files": [
"dist/"
],
"exports": {
".": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:run": "vitest run"
},
"keywords": [
"ograph-cli",
"graph",
"database",
"cli",
"object"
],
"author": "小墨 🖊️",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/oc-xiaoju/uncaged.git",
"directory": "packages/ograph-cli"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^12.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.4.0",
"vitest": "^1.6.0"
}
}