Skip to content

Commit 4fe7096

Browse files
committed
chore: update dependencies
1 parent d9b0bd0 commit 4fe7096

File tree

5 files changed

+1049
-478
lines changed

5 files changed

+1049
-478
lines changed

package.json

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -6,39 +6,34 @@
66
"type": "module",
77
"scripts": {
88
"build:markdown": "pnpm --filter @sveltek/markdown build",
9-
"lint:markdown": "pnpm --filter @sveltek/markdown lint",
10-
"format:markdown": "pnpm --filter @sveltek/markdown format",
9+
"lint:markdown": "eslint packages/markdown",
10+
"format:markdown": "prettier --write packages/markdown",
1111
"publish:markdown": "pnpm --filter @sveltek/markdown publish:markdown",
1212
"build:unplugins": "pnpm --filter @sveltek/unplugins build",
13-
"lint:unplugins": "pnpm --filter @sveltek/unplugins lint",
14-
"format:unplugins": "pnpm --filter @sveltek/unplugins format",
13+
"lint:unplugins": "eslint packages/unplugins",
14+
"format:unplugins": "prettier --write packages/unplugins",
1515
"publish:unplugins": "pnpm --filter @sveltek/unplugins publish:unplugins",
1616
"dev:play": "pnpm --filter playground-sveltekit dev",
1717
"build:play": "pnpm --filter playground-sveltekit build",
1818
"preview:play": "pnpm --filter playground-sveltekit preview",
1919
"sync:play": "pnpm --filter playground-sveltekit sync",
20-
"lint:play": "pnpm --filter playground-sveltekit lint",
21-
"format:play": "pnpm --filter playground-sveltekit format",
20+
"lint:play": "eslint playgrounds/sveltekit",
21+
"format:play": "prettier --write playgrounds/sveltekit",
2222
"format:root": "prettier --write . '!playgrounds' '!packages'",
2323
"create:release": "sh -c 'gh workflow run release --ref main --field package_name=$1' --",
2424
"update:all": "taze -r --interactive"
2525
},
26-
"packageManager": "pnpm@10.8.1",
27-
"engines": {
28-
"node": ">=20.0.0",
29-
"pnpm": ">=10.0.0"
30-
},
3126
"devDependencies": {
3227
"@hypernym/bundler": "^0.14.3",
3328
"@hypernym/utils": "^3.4.3",
34-
"@sveltejs/kit": "^2.20.7",
35-
"@sveltek/eslint-config": "^1.0.0",
36-
"@sveltek/prettier-config": "^1.0.2",
37-
"@sveltek/tsconfig": "^1.0.0",
38-
"@types/node": "^22.14.1",
39-
"eslint": "^9.24.0",
29+
"@sveltejs/kit": "^2.20.8",
30+
"@sveltek/eslint-config": "^1.1.0",
31+
"@sveltek/prettier-config": "^1.0.3",
32+
"@sveltek/tsconfig": "^1.0.1",
33+
"@types/node": "^22.15.13",
34+
"eslint": "^9.26.0",
4035
"prettier": "^3.5.3",
41-
"svelte": "^5.27.1",
36+
"svelte": "^5.28.2",
4237
"typescript": "^5.8.3"
4338
}
4439
}

packages/markdown/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@
4242
],
4343
"scripts": {
4444
"build": "hyperbundler",
45-
"lint": "eslint .",
46-
"lint:fix": "eslint --fix .",
47-
"format": "prettier --write .",
4845
"publish:markdown": "npm run build && npm publish"
4946
},
5047
"peerDependencies": {

packages/unplugins/package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,6 @@
3333
],
3434
"scripts": {
3535
"build": "hyperbundler",
36-
"lint": "eslint .",
37-
"lint:fix": "eslint --fix .",
38-
"format": "prettier --write .",
3936
"publish:unplugins": "npm run build && npm publish"
4037
},
4138
"peerDependencies": {
@@ -67,6 +64,6 @@
6764
},
6865
"devDependencies": {
6966
"@sveltek/markdown": "workspace:*",
70-
"shiki": "^3.2.2"
67+
"shiki": "^3.4.0"
7168
}
7269
}

playgrounds/sveltekit/package.json

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,12 @@
88
"dev": "vite",
99
"build": "vite build",
1010
"preview": "vite preview",
11-
"sync": "svelte-kit sync",
12-
"lint": "eslint .",
13-
"lint:fix": "eslint --fix .",
14-
"format": "prettier --write ."
11+
"sync": "svelte-kit sync"
1512
},
1613
"devDependencies": {
1714
"@sveltejs/adapter-static": "^3.0.8",
18-
"shiki": "^3.2.2",
19-
"svelte-check": "^4.1.6",
20-
"vite": "^6.3.1"
15+
"shiki": "^3.4.0",
16+
"svelte-check": "^4.1.7",
17+
"vite": "^6.3.5"
2118
}
2219
}

0 commit comments

Comments
 (0)