1edb09a8b0
- Rename packages: @uncaged/json-cas → @ocas/core, @uncaged/json-cas-fs → @ocas/fs, @uncaged/cli-json-cas → @ocas/cli - Rename dirs: packages/json-cas → core, json-cas-fs → fs, cli-json-cas → cli - CLI binary: ocas (removed json-cas and ucas aliases) - Default store: ~/.ocas (was ~/.uncaged/json-cas) - Update all imports, tsconfig, biome, docs, tests, snapshots - Changeset config targets @ocas org and shazhou-ww/ocas GitHub Closes #3, Closes #4, Closes #5, Closes #6, Closes #7
28 lines
514 B
JSON
28 lines
514 B
JSON
{
|
|
"name": "@ocas/core",
|
|
"version": "0.6.0",
|
|
"type": "module",
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"scripts": {
|
|
"test": "bun test",
|
|
"prepublishOnly": "bash ../../scripts/check-workspace-deps.sh"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^8.20.0",
|
|
"cborg": "^4.2.3",
|
|
"liquidjs": "^10.27.0",
|
|
"xxhash-wasm": "^1.1.0"
|
|
}
|
|
}
|