resora 0.2.17 → 1.0.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/README.md +17 -0
- package/bin/index.mjs +5 -5
- package/dist/index.cjs +2703 -5
- package/dist/index.d.cts +104 -3
- package/dist/index.d.mts +104 -3
- package/dist/index.mjs +2601 -5
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "resora",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "A structured API response layer for Node.js and TypeScript with automatic JSON responses, collection support, and pagination handling.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"api",
|
|
@@ -76,12 +76,15 @@
|
|
|
76
76
|
"scripts": {
|
|
77
77
|
"cmd": "tsx src/cli/index.ts",
|
|
78
78
|
"lint": "eslint",
|
|
79
|
-
"test": "pnpm vitest",
|
|
79
|
+
"test": "pnpm vitest --run",
|
|
80
|
+
"test:watch": "pnpm vitest --watch",
|
|
80
81
|
"test:coverage": "pnpm vitest --coverage --watch=false",
|
|
81
82
|
"build": "pnpm tsdown",
|
|
82
83
|
"barrel": "barrelize",
|
|
83
84
|
"docs:dev": "vitepress dev docs",
|
|
84
85
|
"docs:build": "vitepress build docs",
|
|
85
|
-
"docs:preview": "vitepress preview docs"
|
|
86
|
+
"docs:preview": "vitepress preview docs",
|
|
87
|
+
"version:packages": "pnpm -r --filter \"@resora/*\" version:patch && git add . && git commit -m \"chore: bump package versions\"",
|
|
88
|
+
"publish:packages": "pnpm version:packages && pnpm -r --filter \"@arkstack/*\" publish --access public"
|
|
86
89
|
}
|
|
87
90
|
}
|