@astrale-os/adapter-cloudflare 0.4.6 → 0.4.7
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@astrale-os/adapter-cloudflare",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.7",
|
|
4
4
|
"description": "Deploy an Astrale domain as a standalone Cloudflare Worker",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"adapter",
|
|
@@ -33,7 +33,7 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"jose": "^6.1.3",
|
|
36
|
-
"@astrale-os/sdk": "^0.4.
|
|
36
|
+
"@astrale-os/sdk": "^0.4.13"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@astrale-os/ox": ">=0.1.0 <1.0.0",
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"scripts": {
|
|
51
51
|
"typecheck": "tsgo --noEmit",
|
|
52
52
|
"test": "vitest run",
|
|
53
|
-
"lint": "oxlint .",
|
|
53
|
+
"lint": "oxlint --disable-nested-config .",
|
|
54
54
|
"format": "pnpm exec oxfmt --write .",
|
|
55
55
|
"format:check": "pnpm exec oxfmt --check .",
|
|
56
56
|
"build": "rm -rf dist && tsgo"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { default } from '@astrale-os/sdk/linter/oxlint-config'
|
package/template/package.json
CHANGED
|
@@ -11,6 +11,8 @@
|
|
|
11
11
|
"prod": "astrale-domain prod",
|
|
12
12
|
"deploy": "astrale-domain deploy",
|
|
13
13
|
"build": "astrale-domain build",
|
|
14
|
+
"lint": "astrale-domain lint",
|
|
15
|
+
"lint:fix": "astrale-domain lint --fix",
|
|
14
16
|
"typecheck": "tsgo --noEmit",
|
|
15
17
|
"test": "vitest run --config vitest.config.ts --passWithNoTests"
|
|
16
18
|
},
|
|
@@ -23,8 +25,10 @@
|
|
|
23
25
|
"zod": "^4.3.6"
|
|
24
26
|
},
|
|
25
27
|
"devDependencies": {
|
|
28
|
+
"@astrale-os/ox": ">=0.1.3 <1.0.0",
|
|
26
29
|
"@types/node": "^22.0.0",
|
|
27
30
|
"@typescript/native-preview": "latest",
|
|
31
|
+
"oxlint": ">=1.72.0 <2.0.0",
|
|
28
32
|
"typescript": "~6.0.1-rc",
|
|
29
33
|
"vitest": "^3.2.4",
|
|
30
34
|
"wrangler": "^4.0.0"
|