@cavuno/board 1.4.0 → 1.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2435 -572
- package/dist/index.d.ts +2435 -572
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +4 -2
- package/skills/manifest.json +1 -1
package/dist/index.js
CHANGED
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cavuno/board",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "Typed isomorphic client for the Cavuno Board API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -50,9 +50,10 @@
|
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
52
|
"build": "tsup",
|
|
53
|
-
"clean": "git clean -xdf .turbo dist node_modules",
|
|
53
|
+
"clean": "git clean -xdf .turbo dist node_modules src/generated",
|
|
54
54
|
"typecheck": "tsgo --noEmit && tsgo --noEmit -p tsconfig.node.json",
|
|
55
55
|
"test": "vitest run",
|
|
56
|
+
"gen:types": "tsx scripts/gen-types.ts",
|
|
56
57
|
"gen:skills-manifest": "tsx scripts/generate-skills-manifest.ts",
|
|
57
58
|
"assert-publish-target": "node -e \"const p=require('./package.json'); if(p.name!=='@cavuno/board'){throw new Error('Refusing to publish: package.json name is '+p.name+', expected @cavuno/board')}; if(p.private){throw new Error('Refusing to publish: package.json has private:true')}\"",
|
|
58
59
|
"prepublishOnly": "pnpm run assert-publish-target && pnpm run gen:skills-manifest && pnpm run build"
|
|
@@ -60,6 +61,7 @@
|
|
|
60
61
|
"devDependencies": {
|
|
61
62
|
"@kit/tsconfig": "workspace:*",
|
|
62
63
|
"@types/node": "catalog:",
|
|
64
|
+
"openapi-typescript": "^7.6.0",
|
|
63
65
|
"tsup": "^8.4.0",
|
|
64
66
|
"tsx": "^4.19.2",
|
|
65
67
|
"vitest": "^2.1.9"
|
package/skills/manifest.json
CHANGED