@absolutejs/absolute 0.19.0-beta.655 → 0.19.0-beta.656

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/package.json CHANGED
@@ -1,306 +1,306 @@
1
1
  {
2
- "author": "Alex Kahn",
3
- "bin": {
4
- "absolute": "dist/cli/index.js"
5
- },
6
- "dependencies": {
7
- "@angular/compiler": "^21.0.0",
8
- "zustand": "^5.0.12"
9
- },
10
- "description": "A fullstack meta-framework for building web applications with TypeScript",
11
- "devDependencies": {
12
- "@angular/common": "^21.0.0",
13
- "@angular/compiler-cli": "^21.0.0",
14
- "@angular/core": "^21.0.0",
15
- "@angular/platform-browser": "^21.0.0",
16
- "@angular/platform-server": "^21.0.0",
17
- "@angular/ssr": "^21.0.0",
18
- "@babel/preset-typescript": "^7.28.5",
19
- "@elysiajs/static": "1.4.0",
20
- "@eslint/js": "^10.0.1",
21
- "@happy-dom/global-registrator": "^20.8.3",
22
- "@stylistic/eslint-plugin": "^5.10.0",
23
- "@tailwindcss/cli": "4.1.7",
24
- "@types/bun": "1.3.9",
25
- "@types/react": "19.2.0",
26
- "@types/react-dom": "19.2.0",
27
- "autoprefixer": "10.4.21",
28
- "elysia": "1.4.18",
29
- "elysia-scoped-state": "0.1.1",
30
- "eslint": "10.0.3",
31
- "eslint-plugin-absolute": "0.2.6",
32
- "eslint-plugin-promise": "7.2.1",
33
- "eslint-plugin-security": "4.0.0",
34
- "globals": "^17.4.0",
35
- "happy-dom": "^20.8.3",
36
- "postcss": "8.5.3",
37
- "prettier": "3.5.3",
38
- "prettier-plugin-svelte": "3.4.0",
39
- "react": "19.2.1",
40
- "react-dom": "19.2.1",
41
- "react-refresh": "0.18.0",
42
- "svelte": "5.55.0",
43
- "svelte-check": "^4.4.5",
44
- "tailwindcss": "4.1.7",
45
- "typescript": "^5.9.3",
46
- "typescript-eslint": "8.56.1",
47
- "vue": "3.5.27",
48
- "vue-tsc": "^3.2.5"
49
- },
50
- "engines": {
51
- "bun": ">=1.3.6"
52
- },
53
- "typesVersions": {
54
- "*": {
55
- "angular": [
56
- "dist/src/angular/index.d.ts"
57
- ],
58
- "angular/*": [
59
- "dist/src/angular/*"
60
- ],
61
- "build": [
62
- "dist/src/build.d.ts"
63
- ],
64
- "client": [
65
- "dist/src/client/index.d.ts"
66
- ],
67
- "image": [
68
- "dist/src/utils/imageClient.d.ts"
69
- ],
70
- "islands": [
71
- "dist/src/islands/index.d.ts"
72
- ],
73
- "react": [
74
- "dist/src/react/index.d.ts"
75
- ],
76
- "react/*": [
77
- "dist/src/react/*"
78
- ],
79
- "svelte": [
80
- "dist/src/svelte/index.d.ts"
81
- ],
82
- "svelte/*": [
83
- "dist/src/svelte/*"
84
- ],
85
- "vue": [
86
- "dist/src/vue/index.d.ts"
87
- ],
88
- "vue/*": [
89
- "dist/src/vue/*"
90
- ]
91
- }
92
- },
93
- "exports": {
94
- ".": {
95
- "import": "./dist/index.js",
96
- "types": "./dist/src/index.d.ts"
97
- },
98
- "./angular": {
99
- "browser": "./dist/angular/browser.js",
100
- "import": "./dist/angular/index.js",
101
- "types": "./dist/src/angular/index.d.ts"
102
- },
103
- "./angular/components": {
104
- "import": "./dist/angular/components/index.js",
105
- "types": "./dist/src/angular/components/index.d.ts"
106
- },
107
- "./angular/server": {
108
- "import": "./dist/angular/server.js",
109
- "types": "./dist/src/angular/server.d.ts"
110
- },
111
- "./build": {
112
- "import": "./dist/build.js",
113
- "types": "./dist/src/build.d.ts"
114
- },
115
- "./client": {
116
- "import": "./dist/client/index.js",
117
- "types": "./dist/src/client/index.d.ts"
118
- },
119
- "./image": {
120
- "import": "./dist/image-client/imageClient.js",
121
- "types": "./dist/src/utils/imageClient.d.ts"
122
- },
123
- "./islands": {
124
- "browser": "./dist/islands/browser.js",
125
- "import": "./dist/islands/index.js",
126
- "types": "./dist/src/islands/index.d.ts"
127
- },
128
- "./react": {
129
- "browser": "./dist/react/browser.js",
130
- "import": "./dist/react/index.js",
131
- "types": "./dist/src/react/index.d.ts"
132
- },
133
- "./react/components": {
134
- "browser": "./dist/react/components/browser/index.js",
135
- "import": "./dist/react/components/index.js",
136
- "types": "./dist/src/react/components/index.d.ts"
137
- },
138
- "./react/hooks": {
139
- "import": "./dist/react/hooks/index.js",
140
- "types": "./dist/src/react/hooks/index.d.ts"
141
- },
142
- "./react/server": {
143
- "import": "./dist/react/server.js",
144
- "types": "./dist/src/react/server.d.ts"
145
- },
146
- "./svelte": {
147
- "browser": "./dist/svelte/browser.js",
148
- "import": "./dist/svelte/index.js",
149
- "types": "./dist/src/svelte/index.d.ts"
150
- },
151
- "./svelte/components/AwaitSlot.svelte": {
152
- "import": "./dist/svelte/components/AwaitSlot.svelte",
153
- "types": "./dist/svelte/components/AwaitSlot.svelte.d.ts"
154
- },
155
- "./svelte/components/Head.js": {
156
- "import": "./dist/svelte/components/Head.svelte",
157
- "types": "./dist/svelte/components/Head.svelte.d.ts"
158
- },
159
- "./svelte/components/Head.svelte": {
160
- "import": "./dist/svelte/components/Head.svelte",
161
- "types": "./dist/svelte/components/Head.svelte.d.ts"
162
- },
163
- "./svelte/components/Image.js": {
164
- "import": "./dist/svelte/components/Image.svelte",
165
- "types": "./dist/svelte/components/Image.svelte.d.ts"
166
- },
167
- "./svelte/components/Image.svelte": {
168
- "import": "./dist/svelte/components/Image.svelte",
169
- "types": "./dist/svelte/components/Image.svelte.d.ts"
170
- },
171
- "./svelte/components/JsonLd.js": {
172
- "import": "./dist/svelte/components/JsonLd.svelte",
173
- "types": "./dist/svelte/components/JsonLd.svelte.d.ts"
174
- },
175
- "./svelte/components/JsonLd.svelte": {
176
- "import": "./dist/svelte/components/JsonLd.svelte",
177
- "types": "./dist/svelte/components/JsonLd.svelte.d.ts"
178
- },
179
- "./svelte/components/StreamSlot.svelte": {
180
- "import": "./dist/svelte/components/StreamSlot.svelte",
181
- "types": "./dist/svelte/components/StreamSlot.svelte.d.ts"
182
- },
183
- "./svelte/server": {
184
- "import": "./dist/svelte/server.js",
185
- "types": "./dist/src/svelte/server.d.ts"
186
- },
187
- "./vue": {
188
- "browser": "./dist/vue/browser.js",
189
- "import": "./dist/vue/index.js",
190
- "types": "./dist/src/vue/index.d.ts"
191
- },
192
- "./vue/components": {
193
- "import": "./dist/vue/components/index.js",
194
- "types": "./dist/src/vue/components/index.d.ts"
195
- },
196
- "./vue/components/Image.js": {
197
- "import": "./dist/vue/components/Image.js",
198
- "types": "./dist/src/vue/components/Image.d.ts"
199
- },
200
- "./vue/components/Image.vue": {
201
- "import": "./dist/vue/components/Image.js",
202
- "types": "./dist/src/vue/components/Image.d.ts"
203
- },
204
- "./vue/server": {
205
- "import": "./dist/vue/server.js",
206
- "types": "./dist/src/vue/server.d.ts"
207
- }
208
- },
209
- "files": [
210
- "dist",
211
- "LICENSE",
212
- "README.md",
213
- "THIRD_PARTY_NOTICES.md"
214
- ],
215
- "license": "BSL-1.1",
216
- "main": "./dist/index.js",
217
- "name": "@absolutejs/absolute",
218
- "optionalDependencies": {
219
- "@absolutejs/native-darwin-arm64": "0.19.0-beta.653",
220
- "@absolutejs/native-darwin-x64": "0.19.0-beta.653",
221
- "@absolutejs/native-linux-arm64": "0.19.0-beta.653",
222
- "@absolutejs/native-linux-x64": "0.19.0-beta.653",
223
- "@absolutejs/native-windows-arm64": "0.19.0-beta.653",
224
- "@absolutejs/native-windows-x64": "0.19.0-beta.653"
225
- },
226
- "overrides": {
227
- "@typescript-eslint/utils": "8.56.1"
228
- },
229
- "peerDependencies": {
230
- "@angular/common": "^21.0.0",
231
- "@angular/compiler-cli": "^21.0.0",
232
- "@angular/core": "^21.0.0",
233
- "@angular/platform-browser": "^21.0.0",
234
- "@angular/platform-server": "^21.0.0",
235
- "@angular/ssr": "^21.0.0",
236
- "elysia": "^1.4.0",
237
- "react": "^19.2.0",
238
- "react-dom": "^19.2.0",
239
- "react-refresh": "^0.18.0",
240
- "sharp": ">=0.33.0",
241
- "svelte": "^5.35.2",
242
- "vue": "^3.5.27",
243
- "zone.js": "^0.15.0"
244
- },
245
- "peerDependenciesMeta": {
246
- "@angular/common": {
247
- "optional": true
248
- },
249
- "@angular/compiler-cli": {
250
- "optional": true
251
- },
252
- "@angular/core": {
253
- "optional": true
254
- },
255
- "@angular/platform-browser": {
256
- "optional": true
257
- },
258
- "@angular/platform-server": {
259
- "optional": true
260
- },
261
- "@angular/ssr": {
262
- "optional": true
263
- },
264
- "react": {
265
- "optional": true
266
- },
267
- "react-dom": {
268
- "optional": true
269
- },
270
- "react-refresh": {
271
- "optional": true
272
- },
273
- "sharp": {
274
- "optional": true
275
- },
276
- "svelte": {
277
- "optional": true
278
- },
279
- "vue": {
280
- "optional": true
281
- },
282
- "zone.js": {
283
- "optional": true
284
- }
285
- },
286
- "repository": {
287
- "type": "git",
288
- "url": "git+https://github.com/absolutejs/absolutejs.git"
289
- },
290
- "scripts": {
291
- "build": "bun run scripts/build.ts",
292
- "build:native": "./native/build.sh",
293
- "db:push": "drizzle-kit push",
294
- "db:studio": "drizzle-kit studio",
295
- "dev": "TELEMETRY_OFF=1 bun run src/cli/index.ts dev example/server.ts --config example/absolute.config.ts",
296
- "format": "bun run src/cli/index.ts prettier --write",
297
- "lint": "bun run src/cli/index.ts eslint",
298
- "release": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh && bun publish",
299
- "release:beta": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh --tag beta && bun publish --tag beta",
300
- "start": "TELEMETRY_OFF=1 bun run src/cli/index.ts start example/server.ts --outdir example/dist --config example/absolute.config.ts",
301
- "test": "bun test tests/unit && bun test --concurrency 1 tests/integration",
302
- "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
303
- },
304
- "types": "./dist/src/index.d.ts",
305
- "version": "0.19.0-beta.655"
2
+ "author": "Alex Kahn",
3
+ "bin": {
4
+ "absolute": "dist/cli/index.js"
5
+ },
6
+ "dependencies": {
7
+ "@angular/compiler": "^21.0.0",
8
+ "zustand": "^5.0.12"
9
+ },
10
+ "description": "A fullstack meta-framework for building web applications with TypeScript",
11
+ "devDependencies": {
12
+ "@angular/common": "^21.0.0",
13
+ "@angular/compiler-cli": "^21.0.0",
14
+ "@angular/core": "^21.0.0",
15
+ "@angular/platform-browser": "^21.0.0",
16
+ "@angular/platform-server": "^21.0.0",
17
+ "@angular/ssr": "^21.0.0",
18
+ "@babel/preset-typescript": "^7.28.5",
19
+ "@elysiajs/static": "1.4.0",
20
+ "@eslint/js": "^10.0.1",
21
+ "@happy-dom/global-registrator": "^20.8.3",
22
+ "@stylistic/eslint-plugin": "^5.10.0",
23
+ "@tailwindcss/cli": "4.1.7",
24
+ "@types/bun": "1.3.9",
25
+ "@types/react": "19.2.0",
26
+ "@types/react-dom": "19.2.0",
27
+ "autoprefixer": "10.4.21",
28
+ "elysia": "1.4.18",
29
+ "elysia-scoped-state": "0.1.1",
30
+ "eslint": "10.0.3",
31
+ "eslint-plugin-absolute": "0.2.6",
32
+ "eslint-plugin-promise": "7.2.1",
33
+ "eslint-plugin-security": "4.0.0",
34
+ "globals": "^17.4.0",
35
+ "happy-dom": "^20.8.3",
36
+ "postcss": "8.5.3",
37
+ "prettier": "3.5.3",
38
+ "prettier-plugin-svelte": "3.4.0",
39
+ "react": "19.2.1",
40
+ "react-dom": "19.2.1",
41
+ "react-refresh": "0.18.0",
42
+ "svelte": "5.55.0",
43
+ "svelte-check": "^4.4.5",
44
+ "tailwindcss": "4.1.7",
45
+ "typescript": "^5.9.3",
46
+ "typescript-eslint": "8.56.1",
47
+ "vue": "3.5.27",
48
+ "vue-tsc": "^3.2.5"
49
+ },
50
+ "engines": {
51
+ "bun": ">=1.3.6"
52
+ },
53
+ "typesVersions": {
54
+ "*": {
55
+ "angular": [
56
+ "dist/src/angular/index.d.ts"
57
+ ],
58
+ "angular/*": [
59
+ "dist/src/angular/*"
60
+ ],
61
+ "build": [
62
+ "dist/src/build.d.ts"
63
+ ],
64
+ "client": [
65
+ "dist/src/client/index.d.ts"
66
+ ],
67
+ "image": [
68
+ "dist/src/utils/imageClient.d.ts"
69
+ ],
70
+ "islands": [
71
+ "dist/src/islands/index.d.ts"
72
+ ],
73
+ "react": [
74
+ "dist/src/react/index.d.ts"
75
+ ],
76
+ "react/*": [
77
+ "dist/src/react/*"
78
+ ],
79
+ "svelte": [
80
+ "dist/src/svelte/index.d.ts"
81
+ ],
82
+ "svelte/*": [
83
+ "dist/src/svelte/*"
84
+ ],
85
+ "vue": [
86
+ "dist/src/vue/index.d.ts"
87
+ ],
88
+ "vue/*": [
89
+ "dist/src/vue/*"
90
+ ]
91
+ }
92
+ },
93
+ "exports": {
94
+ ".": {
95
+ "import": "./dist/index.js",
96
+ "types": "./dist/src/index.d.ts"
97
+ },
98
+ "./angular": {
99
+ "browser": "./dist/angular/browser.js",
100
+ "import": "./dist/angular/index.js",
101
+ "types": "./dist/src/angular/index.d.ts"
102
+ },
103
+ "./angular/components": {
104
+ "import": "./dist/angular/components/index.js",
105
+ "types": "./dist/src/angular/components/index.d.ts"
106
+ },
107
+ "./angular/server": {
108
+ "import": "./dist/angular/server.js",
109
+ "types": "./dist/src/angular/server.d.ts"
110
+ },
111
+ "./build": {
112
+ "import": "./dist/build.js",
113
+ "types": "./dist/src/build.d.ts"
114
+ },
115
+ "./client": {
116
+ "import": "./dist/client/index.js",
117
+ "types": "./dist/src/client/index.d.ts"
118
+ },
119
+ "./image": {
120
+ "import": "./dist/image-client/imageClient.js",
121
+ "types": "./dist/src/utils/imageClient.d.ts"
122
+ },
123
+ "./islands": {
124
+ "browser": "./dist/islands/browser.js",
125
+ "import": "./dist/islands/index.js",
126
+ "types": "./dist/src/islands/index.d.ts"
127
+ },
128
+ "./react": {
129
+ "browser": "./dist/react/browser.js",
130
+ "import": "./dist/react/index.js",
131
+ "types": "./dist/src/react/index.d.ts"
132
+ },
133
+ "./react/components": {
134
+ "browser": "./dist/react/components/browser/index.js",
135
+ "import": "./dist/react/components/index.js",
136
+ "types": "./dist/src/react/components/index.d.ts"
137
+ },
138
+ "./react/hooks": {
139
+ "import": "./dist/react/hooks/index.js",
140
+ "types": "./dist/src/react/hooks/index.d.ts"
141
+ },
142
+ "./react/server": {
143
+ "import": "./dist/react/server.js",
144
+ "types": "./dist/src/react/server.d.ts"
145
+ },
146
+ "./svelte": {
147
+ "browser": "./dist/svelte/browser.js",
148
+ "import": "./dist/svelte/index.js",
149
+ "types": "./dist/src/svelte/index.d.ts"
150
+ },
151
+ "./svelte/components/AwaitSlot.svelte": {
152
+ "import": "./dist/svelte/components/AwaitSlot.svelte",
153
+ "types": "./dist/svelte/components/AwaitSlot.svelte.d.ts"
154
+ },
155
+ "./svelte/components/Head.js": {
156
+ "import": "./dist/svelte/components/Head.svelte",
157
+ "types": "./dist/svelte/components/Head.svelte.d.ts"
158
+ },
159
+ "./svelte/components/Head.svelte": {
160
+ "import": "./dist/svelte/components/Head.svelte",
161
+ "types": "./dist/svelte/components/Head.svelte.d.ts"
162
+ },
163
+ "./svelte/components/Image.js": {
164
+ "import": "./dist/svelte/components/Image.svelte",
165
+ "types": "./dist/svelte/components/Image.svelte.d.ts"
166
+ },
167
+ "./svelte/components/Image.svelte": {
168
+ "import": "./dist/svelte/components/Image.svelte",
169
+ "types": "./dist/svelte/components/Image.svelte.d.ts"
170
+ },
171
+ "./svelte/components/JsonLd.js": {
172
+ "import": "./dist/svelte/components/JsonLd.svelte",
173
+ "types": "./dist/svelte/components/JsonLd.svelte.d.ts"
174
+ },
175
+ "./svelte/components/JsonLd.svelte": {
176
+ "import": "./dist/svelte/components/JsonLd.svelte",
177
+ "types": "./dist/svelte/components/JsonLd.svelte.d.ts"
178
+ },
179
+ "./svelte/components/StreamSlot.svelte": {
180
+ "import": "./dist/svelte/components/StreamSlot.svelte",
181
+ "types": "./dist/svelte/components/StreamSlot.svelte.d.ts"
182
+ },
183
+ "./svelte/server": {
184
+ "import": "./dist/svelte/server.js",
185
+ "types": "./dist/src/svelte/server.d.ts"
186
+ },
187
+ "./vue": {
188
+ "browser": "./dist/vue/browser.js",
189
+ "import": "./dist/vue/index.js",
190
+ "types": "./dist/src/vue/index.d.ts"
191
+ },
192
+ "./vue/components": {
193
+ "import": "./dist/vue/components/index.js",
194
+ "types": "./dist/src/vue/components/index.d.ts"
195
+ },
196
+ "./vue/components/Image.js": {
197
+ "import": "./dist/vue/components/Image.js",
198
+ "types": "./dist/src/vue/components/Image.d.ts"
199
+ },
200
+ "./vue/components/Image.vue": {
201
+ "import": "./dist/vue/components/Image.js",
202
+ "types": "./dist/src/vue/components/Image.d.ts"
203
+ },
204
+ "./vue/server": {
205
+ "import": "./dist/vue/server.js",
206
+ "types": "./dist/src/vue/server.d.ts"
207
+ }
208
+ },
209
+ "files": [
210
+ "dist",
211
+ "LICENSE",
212
+ "README.md",
213
+ "THIRD_PARTY_NOTICES.md"
214
+ ],
215
+ "license": "BSL-1.1",
216
+ "main": "./dist/index.js",
217
+ "name": "@absolutejs/absolute",
218
+ "optionalDependencies": {
219
+ "@absolutejs/native-darwin-arm64": "0.19.0-beta.653",
220
+ "@absolutejs/native-darwin-x64": "0.19.0-beta.653",
221
+ "@absolutejs/native-linux-arm64": "0.19.0-beta.653",
222
+ "@absolutejs/native-linux-x64": "0.19.0-beta.653",
223
+ "@absolutejs/native-windows-arm64": "0.19.0-beta.653",
224
+ "@absolutejs/native-windows-x64": "0.19.0-beta.653"
225
+ },
226
+ "overrides": {
227
+ "@typescript-eslint/utils": "8.56.1"
228
+ },
229
+ "peerDependencies": {
230
+ "@angular/common": "^21.0.0",
231
+ "@angular/compiler-cli": "^21.0.0",
232
+ "@angular/core": "^21.0.0",
233
+ "@angular/platform-browser": "^21.0.0",
234
+ "@angular/platform-server": "^21.0.0",
235
+ "@angular/ssr": "^21.0.0",
236
+ "elysia": "^1.4.0",
237
+ "react": "^19.2.0",
238
+ "react-dom": "^19.2.0",
239
+ "react-refresh": "^0.18.0",
240
+ "sharp": ">=0.33.0",
241
+ "svelte": "^5.35.2",
242
+ "vue": "^3.5.27",
243
+ "zone.js": "^0.15.0"
244
+ },
245
+ "peerDependenciesMeta": {
246
+ "@angular/common": {
247
+ "optional": true
248
+ },
249
+ "@angular/compiler-cli": {
250
+ "optional": true
251
+ },
252
+ "@angular/core": {
253
+ "optional": true
254
+ },
255
+ "@angular/platform-browser": {
256
+ "optional": true
257
+ },
258
+ "@angular/platform-server": {
259
+ "optional": true
260
+ },
261
+ "@angular/ssr": {
262
+ "optional": true
263
+ },
264
+ "react": {
265
+ "optional": true
266
+ },
267
+ "react-dom": {
268
+ "optional": true
269
+ },
270
+ "react-refresh": {
271
+ "optional": true
272
+ },
273
+ "sharp": {
274
+ "optional": true
275
+ },
276
+ "svelte": {
277
+ "optional": true
278
+ },
279
+ "vue": {
280
+ "optional": true
281
+ },
282
+ "zone.js": {
283
+ "optional": true
284
+ }
285
+ },
286
+ "repository": {
287
+ "type": "git",
288
+ "url": "git+https://github.com/absolutejs/absolutejs.git"
289
+ },
290
+ "scripts": {
291
+ "build": "bun run scripts/build.ts",
292
+ "build:native": "./native/build.sh",
293
+ "db:push": "drizzle-kit push",
294
+ "db:studio": "drizzle-kit studio",
295
+ "dev": "TELEMETRY_OFF=1 bun run src/cli/index.ts dev example/server.ts --config example/absolute.config.ts",
296
+ "format": "bun run src/cli/index.ts prettier --write",
297
+ "lint": "bun run src/cli/index.ts eslint",
298
+ "release": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh && bun publish",
299
+ "release:beta": "bun run test && bun run format && bun run build:native && bun run build && ./native/publish.sh --tag beta && bun publish --tag beta",
300
+ "start": "TELEMETRY_OFF=1 bun run src/cli/index.ts start example/server.ts --outdir example/dist --config example/absolute.config.ts",
301
+ "test": "bun test tests/unit && bun test --concurrency 1 tests/integration",
302
+ "typecheck": "bun run src/cli/index.ts typecheck --config example/absolute.config.ts"
303
+ },
304
+ "types": "./dist/src/index.d.ts",
305
+ "version": "0.19.0-beta.656"
306
306
  }