@fabriciogferreira/schema-to-query-string 0.1.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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +26 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ # schema-to-query-string
package/package.json ADDED
@@ -0,0 +1,26 @@
1
+ {
2
+ "name": "@fabriciogferreira/schema-to-query-string",
3
+ "description": "function for convert schema to Spatie Laravel Query Builder",
4
+ "version": "0.1.0",
5
+ "private": false,
6
+ "main": "dist/index.cjs",
7
+ "module": "dist/index.js",
8
+ "types": "dist/index.d.ts",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "test": "bun test",
15
+ "prepublishOnly": "bun run build"
16
+ },
17
+ "devDependencies": {
18
+ "bun-types": "^1.3.5",
19
+ "typescript": "^5.9.3",
20
+ "fast-cartesian": "^9.0.1",
21
+ "js-combinatorics": "^2.1.2"
22
+ },
23
+ "dependencies": {
24
+ "zod": "^4.3.5"
25
+ }
26
+ }