chore: organize workspaces
This commit is contained in:
parent
1db93f0c8f
commit
bd3370f868
22 changed files with 159 additions and 110 deletions
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
import { defineConfig } from 'astro/config'
|
import { defineConfig } from 'astro/config'
|
||||||
import node from '@astrojs/node'
|
import node from '@astrojs/node'
|
||||||
import serviceWorker from './astro-sw.js'
|
import serviceWorker from '@ayco/astro-sw'
|
||||||
|
|
||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
output: 'static',
|
output: 'static',
|
25
demo/package.json
Normal file
25
demo/package.json
Normal file
|
@ -0,0 +1,25 @@
|
||||||
|
{
|
||||||
|
"name": "demo",
|
||||||
|
"private": true,
|
||||||
|
"version": "1.0.0",
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"start": "astro dev",
|
||||||
|
"dev": "astro dev",
|
||||||
|
"build": "astro build",
|
||||||
|
"build:preview:static": "astro build && astro preview",
|
||||||
|
"build:preview": "astro build && node ./server.mjs"
|
||||||
|
},
|
||||||
|
"author": "Ayo Ayco",
|
||||||
|
"license": "MIT",
|
||||||
|
"description": "",
|
||||||
|
"devDependencies": {
|
||||||
|
"astro": "^5.6.1",
|
||||||
|
"@astrojs/node": "^9.1.3",
|
||||||
|
"@fastify/middie": "^9.0.3",
|
||||||
|
"@fastify/static": "^8.1.1",
|
||||||
|
"astro-eslint-parser": "^1.2.2",
|
||||||
|
"fastify": "^5.2.2",
|
||||||
|
"@ayco/astro-sw": "workspace:*"
|
||||||
|
}
|
||||||
|
}
|
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
0
src/env.d.ts → demo/src/env.d.ts
vendored
0
src/env.d.ts → demo/src/env.d.ts
vendored
|
@ -22,11 +22,9 @@ export default [
|
||||||
...eslintPluginAstro.configs['jsx-a11y-recommended'],
|
...eslintPluginAstro.configs['jsx-a11y-recommended'],
|
||||||
{
|
{
|
||||||
ignores: [
|
ignores: [
|
||||||
'dist/*',
|
'**/dist/*',
|
||||||
'.output/*',
|
'**/.output/*',
|
||||||
'.astro/*',
|
'**/.astro/*',
|
||||||
'site/*',
|
|
||||||
'templates/*',
|
|
||||||
'**/node_modules/*',
|
'**/node_modules/*',
|
||||||
'**/env.d.ts',
|
'**/env.d.ts',
|
||||||
],
|
],
|
||||||
|
|
52
package.json
52
package.json
|
@ -1,64 +1,32 @@
|
||||||
{
|
{
|
||||||
"name": "@ayco/astro-sw",
|
"name": "astro-sw-monorepo",
|
||||||
"version": "0.8.14",
|
"version": "1.0.0",
|
||||||
"description": "Use your own authored service worker with Astro",
|
"private": true,
|
||||||
"homepage": "https://ayco.io/n/@ayco/astro-sw",
|
"description": "> [!NOTE] > This project moved to [SourceHut](https://git.sr.ht/~ayoayco/astro-sw).",
|
||||||
"repository": {
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://git.sr.ht/~ayoayco/astro-sw"
|
|
||||||
},
|
|
||||||
"exports": {
|
|
||||||
".": "./astro-sw.js",
|
|
||||||
"./globals": "./globals.js",
|
|
||||||
"./strategies/*": "./strategies/*"
|
|
||||||
},
|
|
||||||
"files": [
|
|
||||||
"astro-sw.js",
|
|
||||||
"globals.js",
|
|
||||||
"strategies/*"
|
|
||||||
],
|
|
||||||
"main": "./astro-sw.js",
|
|
||||||
"type": "module",
|
|
||||||
"engines": {
|
|
||||||
"node": ">=18.0.0"
|
|
||||||
},
|
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "astro dev",
|
|
||||||
"dev": "astro dev",
|
|
||||||
"build": "astro build",
|
|
||||||
"build:preview:static": "astro build && astro preview",
|
|
||||||
"build:preview": "astro build && node ./server.mjs",
|
|
||||||
"test": "echo \"Error: no test specified\" && exit 1",
|
|
||||||
"format": "prettier . --write",
|
"format": "prettier . --write",
|
||||||
"lint": "eslint . --config eslint.config.mjs --cache",
|
"lint": "eslint . --config eslint.config.mjs --cache",
|
||||||
"check": "npm run format && npm run lint",
|
"check": "npm run format && npm run lint",
|
||||||
"prepare": "husky"
|
"prepare": "husky"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"repository": {
|
||||||
"withastro",
|
"type": "git",
|
||||||
"perf"
|
"url": "git+ssh://git@git.sr.ht/~ayoayco/astro-sw.git"
|
||||||
],
|
},
|
||||||
"author": "Ayo Ayco",
|
"author": "Ayo Ayco",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
"homepage": "https://ayco.io/n/@ayco/astro-sw#readme",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@astrojs/node": "^9.1.3",
|
"@ayco/astro-sw": "workspace:*",
|
||||||
"@eslint/js": "^9.24.0",
|
"@eslint/js": "^9.24.0",
|
||||||
"@fastify/middie": "^9.0.3",
|
|
||||||
"@fastify/static": "^8.1.1",
|
|
||||||
"astro": "^5.6.1",
|
|
||||||
"astro-eslint-parser": "^1.2.2",
|
|
||||||
"eslint": "^9.24.0",
|
"eslint": "^9.24.0",
|
||||||
"eslint-plugin-astro": "^1.3.1",
|
"eslint-plugin-astro": "^1.3.1",
|
||||||
"eslint-plugin-jsx-a11y": "^6.10.2",
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|
||||||
"fastify": "^5.2.2",
|
|
||||||
"globals": "^16.0.0",
|
"globals": "^16.0.0",
|
||||||
"husky": "^9.1.7",
|
"husky": "^9.1.7",
|
||||||
"prettier": "^3.5.3",
|
"prettier": "^3.5.3",
|
||||||
"prettier-plugin-astro": "^0.14.1",
|
"prettier-plugin-astro": "^0.14.1",
|
||||||
"typescript-eslint": "^8.29.0",
|
"typescript-eslint": "^8.29.0",
|
||||||
"vitest": "^3.1.1"
|
"vitest": "^3.1.1"
|
||||||
},
|
|
||||||
"dependencies": {
|
|
||||||
"esbuild": "^0.25.2"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
40
packages/astro-sw/package.json
Normal file
40
packages/astro-sw/package.json
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"name": "@ayco/astro-sw",
|
||||||
|
"version": "0.8.14",
|
||||||
|
"description": "Use your own authored service worker with Astro",
|
||||||
|
"homepage": "https://ayco.io/n/@ayco/astro-sw",
|
||||||
|
"repository": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://git.sr.ht/~ayoayco/astro-sw"
|
||||||
|
},
|
||||||
|
"exports": {
|
||||||
|
".": "./astro-sw.js",
|
||||||
|
"./globals": "./globals.js",
|
||||||
|
"./strategies/*": "./strategies/*"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"astro-sw.js",
|
||||||
|
"globals.js",
|
||||||
|
"strategies/*"
|
||||||
|
],
|
||||||
|
"main": "./astro-sw.js",
|
||||||
|
"type": "module",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=18.0.0"
|
||||||
|
},
|
||||||
|
"scripts": {
|
||||||
|
"test": "vitest run"
|
||||||
|
},
|
||||||
|
"keywords": [
|
||||||
|
"withastro",
|
||||||
|
"perf"
|
||||||
|
],
|
||||||
|
"author": "Ayo Ayco",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"esbuild": "^0.25.2"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"astro": "^5.6.1"
|
||||||
|
}
|
||||||
|
}
|
139
pnpm-lock.yaml
139
pnpm-lock.yaml
|
@ -7,29 +7,13 @@ settings:
|
||||||
importers:
|
importers:
|
||||||
|
|
||||||
.:
|
.:
|
||||||
dependencies:
|
|
||||||
esbuild:
|
|
||||||
specifier: ^0.25.2
|
|
||||||
version: 0.25.2
|
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@astrojs/node':
|
'@ayco/astro-sw':
|
||||||
specifier: ^9.1.3
|
specifier: workspace:*
|
||||||
version: 9.1.3(astro@5.6.1(rollup@4.39.0)(typescript@5.5.4))
|
version: link:packages/astro-sw
|
||||||
'@eslint/js':
|
'@eslint/js':
|
||||||
specifier: ^9.24.0
|
specifier: ^9.24.0
|
||||||
version: 9.24.0
|
version: 9.24.0
|
||||||
'@fastify/middie':
|
|
||||||
specifier: ^9.0.3
|
|
||||||
version: 9.0.3
|
|
||||||
'@fastify/static':
|
|
||||||
specifier: ^8.1.1
|
|
||||||
version: 8.1.1
|
|
||||||
astro:
|
|
||||||
specifier: ^5.6.1
|
|
||||||
version: 5.6.1(rollup@4.39.0)(typescript@5.5.4)
|
|
||||||
astro-eslint-parser:
|
|
||||||
specifier: ^1.2.2
|
|
||||||
version: 1.2.2
|
|
||||||
eslint:
|
eslint:
|
||||||
specifier: ^9.24.0
|
specifier: ^9.24.0
|
||||||
version: 9.24.0
|
version: 9.24.0
|
||||||
|
@ -39,9 +23,6 @@ importers:
|
||||||
eslint-plugin-jsx-a11y:
|
eslint-plugin-jsx-a11y:
|
||||||
specifier: ^6.10.2
|
specifier: ^6.10.2
|
||||||
version: 6.10.2(eslint@9.24.0)
|
version: 6.10.2(eslint@9.24.0)
|
||||||
fastify:
|
|
||||||
specifier: ^5.2.2
|
|
||||||
version: 5.2.2
|
|
||||||
globals:
|
globals:
|
||||||
specifier: ^16.0.0
|
specifier: ^16.0.0
|
||||||
version: 16.0.0
|
version: 16.0.0
|
||||||
|
@ -56,11 +37,45 @@ importers:
|
||||||
version: 0.14.1
|
version: 0.14.1
|
||||||
typescript-eslint:
|
typescript-eslint:
|
||||||
specifier: ^8.29.0
|
specifier: ^8.29.0
|
||||||
version: 8.29.0(eslint@9.24.0)(typescript@5.5.4)
|
version: 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
vitest:
|
vitest:
|
||||||
specifier: ^3.1.1
|
specifier: ^3.1.1
|
||||||
version: 3.1.1(@types/debug@4.1.12)
|
version: 3.1.1(@types/debug@4.1.12)
|
||||||
|
|
||||||
|
demo:
|
||||||
|
devDependencies:
|
||||||
|
'@astrojs/node':
|
||||||
|
specifier: ^9.1.3
|
||||||
|
version: 9.1.3(astro@5.6.1(rollup@4.39.0)(typescript@5.8.3))
|
||||||
|
'@ayco/astro-sw':
|
||||||
|
specifier: workspace:*
|
||||||
|
version: link:../packages/astro-sw
|
||||||
|
'@fastify/middie':
|
||||||
|
specifier: ^9.0.3
|
||||||
|
version: 9.0.3
|
||||||
|
'@fastify/static':
|
||||||
|
specifier: ^8.1.1
|
||||||
|
version: 8.1.1
|
||||||
|
astro:
|
||||||
|
specifier: ^5.6.1
|
||||||
|
version: 5.6.1(rollup@4.39.0)(typescript@5.8.3)
|
||||||
|
astro-eslint-parser:
|
||||||
|
specifier: ^1.2.2
|
||||||
|
version: 1.2.2
|
||||||
|
fastify:
|
||||||
|
specifier: ^5.2.2
|
||||||
|
version: 5.2.2
|
||||||
|
|
||||||
|
packages/astro-sw:
|
||||||
|
dependencies:
|
||||||
|
esbuild:
|
||||||
|
specifier: ^0.25.2
|
||||||
|
version: 0.25.2
|
||||||
|
devDependencies:
|
||||||
|
astro:
|
||||||
|
specifier: ^5.6.1
|
||||||
|
version: 5.6.1(rollup@4.39.0)(typescript@5.8.3)
|
||||||
|
|
||||||
packages:
|
packages:
|
||||||
|
|
||||||
'@astrojs/compiler@2.11.0':
|
'@astrojs/compiler@2.11.0':
|
||||||
|
@ -2436,8 +2451,8 @@ packages:
|
||||||
eslint: ^8.57.0 || ^9.0.0
|
eslint: ^8.57.0 || ^9.0.0
|
||||||
typescript: '>=4.8.4 <5.9.0'
|
typescript: '>=4.8.4 <5.9.0'
|
||||||
|
|
||||||
typescript@5.5.4:
|
typescript@5.8.3:
|
||||||
resolution: {integrity: sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==}
|
resolution: {integrity: sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==}
|
||||||
engines: {node: '>=14.17'}
|
engines: {node: '>=14.17'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
|
@ -2764,10 +2779,10 @@ snapshots:
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@astrojs/node@9.1.3(astro@5.6.1(rollup@4.39.0)(typescript@5.5.4))':
|
'@astrojs/node@9.1.3(astro@5.6.1(rollup@4.39.0)(typescript@5.8.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/internal-helpers': 0.6.1
|
'@astrojs/internal-helpers': 0.6.1
|
||||||
astro: 5.6.1(rollup@4.39.0)(typescript@5.5.4)
|
astro: 5.6.1(rollup@4.39.0)(typescript@5.8.3)
|
||||||
send: 1.2.0
|
send: 1.2.0
|
||||||
server-destroy: 1.0.1
|
server-destroy: 1.0.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
@ -3221,32 +3236,32 @@ snapshots:
|
||||||
|
|
||||||
'@types/unist@3.0.3': {}
|
'@types/unist@3.0.3': {}
|
||||||
|
|
||||||
'@typescript-eslint/eslint-plugin@8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.5.4))(eslint@9.24.0)(typescript@5.5.4)':
|
'@typescript-eslint/eslint-plugin@8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/regexpp': 4.12.1
|
'@eslint-community/regexpp': 4.12.1
|
||||||
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.5.4)
|
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/scope-manager': 8.29.0
|
'@typescript-eslint/scope-manager': 8.29.0
|
||||||
'@typescript-eslint/type-utils': 8.29.0(eslint@9.24.0)(typescript@5.5.4)
|
'@typescript-eslint/type-utils': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.5.4)
|
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
eslint: 9.24.0
|
eslint: 9.24.0
|
||||||
graphemer: 1.4.0
|
graphemer: 1.4.0
|
||||||
ignore: 5.3.2
|
ignore: 5.3.2
|
||||||
natural-compare: 1.4.0
|
natural-compare: 1.4.0
|
||||||
ts-api-utils: 2.1.0(typescript@5.5.4)
|
ts-api-utils: 2.1.0(typescript@5.8.3)
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.5.4)':
|
'@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/scope-manager': 8.29.0
|
'@typescript-eslint/scope-manager': 8.29.0
|
||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.5.4)
|
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.3)
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
eslint: 9.24.0
|
eslint: 9.24.0
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
@ -3255,20 +3270,20 @@ snapshots:
|
||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
|
|
||||||
'@typescript-eslint/type-utils@8.29.0(eslint@9.24.0)(typescript@5.5.4)':
|
'@typescript-eslint/type-utils@8.29.0(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.5.4)
|
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.3)
|
||||||
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.5.4)
|
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
debug: 4.4.0
|
debug: 4.4.0
|
||||||
eslint: 9.24.0
|
eslint: 9.24.0
|
||||||
ts-api-utils: 2.1.0(typescript@5.5.4)
|
ts-api-utils: 2.1.0(typescript@5.8.3)
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/types@8.29.0': {}
|
'@typescript-eslint/types@8.29.0': {}
|
||||||
|
|
||||||
'@typescript-eslint/typescript-estree@8.29.0(typescript@5.5.4)':
|
'@typescript-eslint/typescript-estree@8.29.0(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/visitor-keys': 8.29.0
|
'@typescript-eslint/visitor-keys': 8.29.0
|
||||||
|
@ -3277,19 +3292,19 @@ snapshots:
|
||||||
is-glob: 4.0.3
|
is-glob: 4.0.3
|
||||||
minimatch: 9.0.5
|
minimatch: 9.0.5
|
||||||
semver: 7.7.1
|
semver: 7.7.1
|
||||||
ts-api-utils: 2.1.0(typescript@5.5.4)
|
ts-api-utils: 2.1.0(typescript@5.8.3)
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@typescript-eslint/utils@8.29.0(eslint@9.24.0)(typescript@5.5.4)':
|
'@typescript-eslint/utils@8.29.0(eslint@9.24.0)(typescript@5.8.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0)
|
'@eslint-community/eslint-utils': 4.5.1(eslint@9.24.0)
|
||||||
'@typescript-eslint/scope-manager': 8.29.0
|
'@typescript-eslint/scope-manager': 8.29.0
|
||||||
'@typescript-eslint/types': 8.29.0
|
'@typescript-eslint/types': 8.29.0
|
||||||
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.5.4)
|
'@typescript-eslint/typescript-estree': 8.29.0(typescript@5.8.3)
|
||||||
eslint: 9.24.0
|
eslint: 9.24.0
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
|
@ -3450,7 +3465,7 @@ snapshots:
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
astro@5.6.1(rollup@4.39.0)(typescript@5.5.4):
|
astro@5.6.1(rollup@4.39.0)(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@astrojs/compiler': 2.11.0
|
'@astrojs/compiler': 2.11.0
|
||||||
'@astrojs/internal-helpers': 0.6.1
|
'@astrojs/internal-helpers': 0.6.1
|
||||||
|
@ -3496,7 +3511,7 @@ snapshots:
|
||||||
shiki: 3.2.1
|
shiki: 3.2.1
|
||||||
tinyexec: 0.3.2
|
tinyexec: 0.3.2
|
||||||
tinyglobby: 0.2.12
|
tinyglobby: 0.2.12
|
||||||
tsconfck: 3.1.5(typescript@5.5.4)
|
tsconfck: 3.1.5(typescript@5.8.3)
|
||||||
ultrahtml: 1.6.0
|
ultrahtml: 1.6.0
|
||||||
unist-util-visit: 5.0.0
|
unist-util-visit: 5.0.0
|
||||||
unstorage: 1.15.0
|
unstorage: 1.15.0
|
||||||
|
@ -3508,7 +3523,7 @@ snapshots:
|
||||||
yocto-spinner: 0.2.1
|
yocto-spinner: 0.2.1
|
||||||
zod: 3.24.2
|
zod: 3.24.2
|
||||||
zod-to-json-schema: 3.24.5(zod@3.24.2)
|
zod-to-json-schema: 3.24.5(zod@3.24.2)
|
||||||
zod-to-ts: 1.2.0(typescript@5.5.4)(zod@3.24.2)
|
zod-to-ts: 1.2.0(typescript@5.8.3)(zod@3.24.2)
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
sharp: 0.33.5
|
sharp: 0.33.5
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
|
@ -5569,13 +5584,13 @@ snapshots:
|
||||||
|
|
||||||
trough@2.2.0: {}
|
trough@2.2.0: {}
|
||||||
|
|
||||||
ts-api-utils@2.1.0(typescript@5.5.4):
|
ts-api-utils@2.1.0(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
|
|
||||||
tsconfck@3.1.5(typescript@5.5.4):
|
tsconfck@3.1.5(typescript@5.8.3):
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
|
|
||||||
tslib@2.8.1: {}
|
tslib@2.8.1: {}
|
||||||
|
|
||||||
|
@ -5618,17 +5633,17 @@ snapshots:
|
||||||
possible-typed-array-names: 1.1.0
|
possible-typed-array-names: 1.1.0
|
||||||
reflect.getprototypeof: 1.0.10
|
reflect.getprototypeof: 1.0.10
|
||||||
|
|
||||||
typescript-eslint@8.29.0(eslint@9.24.0)(typescript@5.5.4):
|
typescript-eslint@8.29.0(eslint@9.24.0)(typescript@5.8.3):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@typescript-eslint/eslint-plugin': 8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.5.4))(eslint@9.24.0)(typescript@5.5.4)
|
'@typescript-eslint/eslint-plugin': 8.29.0(@typescript-eslint/parser@8.29.0(eslint@9.24.0)(typescript@5.8.3))(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.5.4)
|
'@typescript-eslint/parser': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.5.4)
|
'@typescript-eslint/utils': 8.29.0(eslint@9.24.0)(typescript@5.8.3)
|
||||||
eslint: 9.24.0
|
eslint: 9.24.0
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
typescript@5.5.4: {}
|
typescript@5.8.3: {}
|
||||||
|
|
||||||
ufo@1.5.4: {}
|
ufo@1.5.4: {}
|
||||||
|
|
||||||
|
@ -5894,9 +5909,9 @@ snapshots:
|
||||||
dependencies:
|
dependencies:
|
||||||
zod: 3.24.2
|
zod: 3.24.2
|
||||||
|
|
||||||
zod-to-ts@1.2.0(typescript@5.5.4)(zod@3.24.2):
|
zod-to-ts@1.2.0(typescript@5.8.3)(zod@3.24.2):
|
||||||
dependencies:
|
dependencies:
|
||||||
typescript: 5.5.4
|
typescript: 5.8.3
|
||||||
zod: 3.24.2
|
zod: 3.24.2
|
||||||
|
|
||||||
zod@3.24.2: {}
|
zod@3.24.2: {}
|
||||||
|
|
3
pnpm-workspace.yaml
Normal file
3
pnpm-workspace.yaml
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
packages:
|
||||||
|
- "packages/**"
|
||||||
|
- "demo"
|
Loading…
Reference in a new issue