@prisma-next/sql-lane-query-builder 0.0.1 → 0.3.0-pr.100.2
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 +1 -1
- package/package.json +18 -18
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,25 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prisma-next/sql-lane-query-builder",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.3.0-pr.100.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"description": "SQL query builder lane for Prisma Next",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "tsdown",
|
|
9
|
-
"test": "vitest run --passWithNoTests",
|
|
10
|
-
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
11
|
-
"typecheck": "tsc --noEmit",
|
|
12
|
-
"lint": "biome check . --error-on-warnings",
|
|
13
|
-
"lint:fix": "biome check --write .",
|
|
14
|
-
"lint:fix:unsafe": "biome check --write --unsafe .",
|
|
15
|
-
"clean": "rm -rf dist coverage .tmp-output"
|
|
16
|
-
},
|
|
17
7
|
"devDependencies": {
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
"
|
|
22
|
-
"
|
|
8
|
+
"tsdown": "0.18.4",
|
|
9
|
+
"typescript": "5.9.3",
|
|
10
|
+
"vitest": "4.0.16",
|
|
11
|
+
"@prisma-next/tsconfig": "0.0.0",
|
|
12
|
+
"@prisma-next/tsdown": "0.0.0"
|
|
23
13
|
},
|
|
24
14
|
"files": [
|
|
25
15
|
"dist",
|
|
@@ -34,5 +24,15 @@
|
|
|
34
24
|
},
|
|
35
25
|
"main": "./dist/index.mjs",
|
|
36
26
|
"module": "./dist/index.mjs",
|
|
37
|
-
"types": "./dist/index.d.mts"
|
|
38
|
-
|
|
27
|
+
"types": "./dist/index.d.mts",
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "tsdown",
|
|
30
|
+
"test": "vitest run --passWithNoTests",
|
|
31
|
+
"test:coverage": "vitest run --coverage --passWithNoTests",
|
|
32
|
+
"typecheck": "tsc --noEmit",
|
|
33
|
+
"lint": "biome check . --error-on-warnings",
|
|
34
|
+
"lint:fix": "biome check --write .",
|
|
35
|
+
"lint:fix:unsafe": "biome check --write --unsafe .",
|
|
36
|
+
"clean": "rm -rf dist dist-tsc dist-tsc-prod coverage .tmp-output"
|
|
37
|
+
}
|
|
38
|
+
}
|