@danielhritcu/zenstack-orm 3.5.15 → 3.5.17
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.cjs +156 -10
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +156 -10
- package/dist/index.js.map +1 -1
- package/package.json +145 -145
package/package.json
CHANGED
|
@@ -1,156 +1,156 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
},
|
|
11
|
-
"homepage": "https://zenstack.dev",
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "https://github.com/zenstackhq/zenstack"
|
|
15
|
-
},
|
|
16
|
-
"license": "MIT",
|
|
17
|
-
"keywords": [],
|
|
18
|
-
"files": [
|
|
19
|
-
"dist"
|
|
20
|
-
],
|
|
21
|
-
"publishConfig": {
|
|
22
|
-
"access": "public"
|
|
23
|
-
},
|
|
24
|
-
"exports": {
|
|
25
|
-
".": {
|
|
26
|
-
"import": {
|
|
27
|
-
"types": "./dist/index.d.ts",
|
|
28
|
-
"default": "./dist/index.js"
|
|
29
|
-
},
|
|
30
|
-
"require": {
|
|
31
|
-
"types": "./dist/index.d.cts",
|
|
32
|
-
"default": "./dist/index.cjs"
|
|
33
|
-
}
|
|
2
|
+
"name": "@danielhritcu/zenstack-orm",
|
|
3
|
+
"displayName": "ZenStack ORM",
|
|
4
|
+
"description": "ZenStack ORM",
|
|
5
|
+
"version": "3.5.17",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"author": {
|
|
8
|
+
"name": "ZenStack Team",
|
|
9
|
+
"email": "contact@zenstack.dev"
|
|
34
10
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
},
|
|
40
|
-
"require": {
|
|
41
|
-
"types": "./dist/schema.d.cts",
|
|
42
|
-
"default": "./dist/schema.cjs"
|
|
43
|
-
}
|
|
11
|
+
"homepage": "https://zenstack.dev",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/zenstackhq/zenstack"
|
|
44
15
|
},
|
|
45
|
-
"
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
"
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
"
|
|
52
|
-
"default": "./dist/dialects/sqlite.cjs"
|
|
53
|
-
}
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"keywords": [],
|
|
18
|
+
"files": [
|
|
19
|
+
"dist"
|
|
20
|
+
],
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"access": "public"
|
|
54
23
|
},
|
|
55
|
-
"
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"import": {
|
|
27
|
+
"types": "./dist/index.d.ts",
|
|
28
|
+
"default": "./dist/index.js"
|
|
29
|
+
},
|
|
30
|
+
"require": {
|
|
31
|
+
"types": "./dist/index.d.cts",
|
|
32
|
+
"default": "./dist/index.cjs"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"./schema": {
|
|
36
|
+
"import": {
|
|
37
|
+
"types": "./dist/schema.d.ts",
|
|
38
|
+
"default": "./dist/schema.js"
|
|
39
|
+
},
|
|
40
|
+
"require": {
|
|
41
|
+
"types": "./dist/schema.d.cts",
|
|
42
|
+
"default": "./dist/schema.cjs"
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
"./dialects/sqlite": {
|
|
46
|
+
"import": {
|
|
47
|
+
"types": "./dist/dialects/sqlite.d.ts",
|
|
48
|
+
"default": "./dist/dialects/sqlite.js"
|
|
49
|
+
},
|
|
50
|
+
"require": {
|
|
51
|
+
"types": "./dist/dialects/sqlite.d.cts",
|
|
52
|
+
"default": "./dist/dialects/sqlite.cjs"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"./dialects/postgres": {
|
|
56
|
+
"import": {
|
|
57
|
+
"types": "./dist/dialects/postgres.d.ts",
|
|
58
|
+
"default": "./dist/dialects/postgres.js"
|
|
59
|
+
},
|
|
60
|
+
"require": {
|
|
61
|
+
"types": "./dist/dialects/postgres.d.cts",
|
|
62
|
+
"default": "./dist/dialects/postgres.cjs"
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
"./dialects/mysql": {
|
|
66
|
+
"import": {
|
|
67
|
+
"types": "./dist/dialects/mysql.d.ts",
|
|
68
|
+
"default": "./dist/dialects/mysql.js"
|
|
69
|
+
},
|
|
70
|
+
"require": {
|
|
71
|
+
"types": "./dist/dialects/mysql.d.cts",
|
|
72
|
+
"default": "./dist/dialects/mysql.cjs"
|
|
73
|
+
}
|
|
74
|
+
},
|
|
75
|
+
"./dialects/sql.js": {
|
|
76
|
+
"import": {
|
|
77
|
+
"types": "./dist/dialects/sql.js.d.ts",
|
|
78
|
+
"default": "./dist/dialects/sql.js.js"
|
|
79
|
+
},
|
|
80
|
+
"require": {
|
|
81
|
+
"types": "./dist/dialects/sql.js.d.cts",
|
|
82
|
+
"default": "./dist/dialects/sql.js.cjs"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"./helpers": {
|
|
86
|
+
"import": {
|
|
87
|
+
"types": "./dist/helpers.d.ts",
|
|
88
|
+
"default": "./dist/helpers.js"
|
|
89
|
+
},
|
|
90
|
+
"require": {
|
|
91
|
+
"types": "./dist/helpers.d.cts",
|
|
92
|
+
"default": "./dist/helpers.cjs"
|
|
93
|
+
}
|
|
94
|
+
},
|
|
95
|
+
"./package.json": {
|
|
96
|
+
"import": "./package.json",
|
|
97
|
+
"require": "./package.json"
|
|
98
|
+
}
|
|
64
99
|
},
|
|
65
|
-
"
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
"
|
|
72
|
-
"
|
|
73
|
-
|
|
100
|
+
"dependencies": {
|
|
101
|
+
"@paralleldrive/cuid2": "^2.2.2",
|
|
102
|
+
"cuid": "^3.0.0",
|
|
103
|
+
"decimal.js": "^10.4.3",
|
|
104
|
+
"json-stable-stringify": "^1.3.0",
|
|
105
|
+
"kysely": "~0.28.8",
|
|
106
|
+
"nanoid": "^5.0.9",
|
|
107
|
+
"postgres-array": "^3.0.4",
|
|
108
|
+
"toposort": "^2.0.2",
|
|
109
|
+
"ts-pattern": "^5.7.1",
|
|
110
|
+
"ulid": "^3.0.0",
|
|
111
|
+
"uuid": "^11.0.5",
|
|
112
|
+
"zod-validation-error": "^4.0.1",
|
|
113
|
+
"@zenstackhq/common-helpers": "^3.5.4",
|
|
114
|
+
"@zenstackhq/schema": "^3.5.4",
|
|
115
|
+
"@zenstackhq/zod": "^3.5.4"
|
|
74
116
|
},
|
|
75
|
-
"
|
|
76
|
-
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
"types": "./dist/dialects/sql.js.d.cts",
|
|
82
|
-
"default": "./dist/dialects/sql.js.cjs"
|
|
83
|
-
}
|
|
117
|
+
"peerDependencies": {
|
|
118
|
+
"better-sqlite3": "^12.5.0",
|
|
119
|
+
"pg": "^8.13.1",
|
|
120
|
+
"mysql2": "^3.16.1",
|
|
121
|
+
"sql.js": "^1.13.0",
|
|
122
|
+
"zod": "^4.0.0"
|
|
84
123
|
},
|
|
85
|
-
"
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"
|
|
93
|
-
|
|
124
|
+
"peerDependenciesMeta": {
|
|
125
|
+
"better-sqlite3": {
|
|
126
|
+
"optional": true
|
|
127
|
+
},
|
|
128
|
+
"pg": {
|
|
129
|
+
"optional": true
|
|
130
|
+
},
|
|
131
|
+
"mysql2": {
|
|
132
|
+
"optional": true
|
|
133
|
+
},
|
|
134
|
+
"sql.js": {
|
|
135
|
+
"optional": true
|
|
136
|
+
}
|
|
94
137
|
},
|
|
95
|
-
"
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
"kysely": "~0.28.8",
|
|
106
|
-
"nanoid": "^5.0.9",
|
|
107
|
-
"postgres-array": "^3.0.4",
|
|
108
|
-
"toposort": "^2.0.2",
|
|
109
|
-
"ts-pattern": "^5.7.1",
|
|
110
|
-
"ulid": "^3.0.0",
|
|
111
|
-
"uuid": "^11.0.5",
|
|
112
|
-
"zod-validation-error": "^4.0.1",
|
|
113
|
-
"@zenstackhq/common-helpers": "^3.5.4",
|
|
114
|
-
"@zenstackhq/zod": "^3.5.4",
|
|
115
|
-
"@zenstackhq/schema": "^3.5.4"
|
|
116
|
-
},
|
|
117
|
-
"peerDependencies": {
|
|
118
|
-
"better-sqlite3": "^12.5.0",
|
|
119
|
-
"pg": "^8.13.1",
|
|
120
|
-
"mysql2": "^3.16.1",
|
|
121
|
-
"sql.js": "^1.13.0",
|
|
122
|
-
"zod": "^4.0.0"
|
|
123
|
-
},
|
|
124
|
-
"peerDependenciesMeta": {
|
|
125
|
-
"better-sqlite3": {
|
|
126
|
-
"optional": true
|
|
127
|
-
},
|
|
128
|
-
"pg": {
|
|
129
|
-
"optional": true
|
|
130
|
-
},
|
|
131
|
-
"mysql2": {
|
|
132
|
-
"optional": true
|
|
138
|
+
"devDependencies": {
|
|
139
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
140
|
+
"@types/pg": "^8.0.0",
|
|
141
|
+
"@types/sql.js": "^1.4.9",
|
|
142
|
+
"@types/toposort": "^2.0.7",
|
|
143
|
+
"tsx": "^4.19.2",
|
|
144
|
+
"zod": "^4.1.0",
|
|
145
|
+
"@zenstackhq/typescript-config": "3.5.4",
|
|
146
|
+
"@zenstackhq/vitest-config": "3.5.4",
|
|
147
|
+
"@zenstackhq/eslint-config": "3.5.4"
|
|
133
148
|
},
|
|
134
|
-
"
|
|
135
|
-
|
|
149
|
+
"funding": "https://github.com/sponsors/zenstackhq",
|
|
150
|
+
"scripts": {
|
|
151
|
+
"build": "tsc --noEmit && tsup-node",
|
|
152
|
+
"watch": "tsup-node --watch",
|
|
153
|
+
"lint": "eslint src --ext ts",
|
|
154
|
+
"pack": "pnpm pack"
|
|
136
155
|
}
|
|
137
|
-
},
|
|
138
|
-
"devDependencies": {
|
|
139
|
-
"@types/better-sqlite3": "^7.6.13",
|
|
140
|
-
"@types/pg": "^8.0.0",
|
|
141
|
-
"@types/sql.js": "^1.4.9",
|
|
142
|
-
"@types/toposort": "^2.0.7",
|
|
143
|
-
"tsx": "^4.19.2",
|
|
144
|
-
"zod": "^4.1.0",
|
|
145
|
-
"@zenstackhq/typescript-config": "3.5.4",
|
|
146
|
-
"@zenstackhq/vitest-config": "3.5.4",
|
|
147
|
-
"@zenstackhq/eslint-config": "3.5.4"
|
|
148
|
-
},
|
|
149
|
-
"funding": "https://github.com/sponsors/zenstackhq",
|
|
150
|
-
"scripts": {
|
|
151
|
-
"build": "tsc --noEmit && tsup-node",
|
|
152
|
-
"watch": "tsup-node --watch",
|
|
153
|
-
"lint": "eslint src --ext ts",
|
|
154
|
-
"pack": "pnpm pack"
|
|
155
|
-
}
|
|
156
156
|
}
|