ceba0b5d43
Checks for unresolved workspace:* dependencies before publish. Changesets resolves these automatically, so normal release flow passes through. Direct npm publish with workspace deps is blocked.
26 lines
480 B
JSON
26 lines
480 B
JSON
{
|
|
"name": "@uncaged/json-cas-fs",
|
|
"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": {
|
|
"@uncaged/json-cas": "^0.6.0",
|
|
"cborg": "^4.2.3"
|
|
}
|
|
}
|