|
7 | 7 | "format": "prettier --cache --write --ignore-unknown .", |
8 | 8 | "lint": "eslint --cache --fix .", |
9 | 9 | "build": "pnpm -r --filter=./packages/* build", |
10 | | - "build:playground": "pnpm -r --filter=./playground/* build", |
11 | | - "ci-publish": "tsx scripts/publishCI.ts" |
| 10 | + "build:playground": "pnpm -r --filter=./playground/* build" |
12 | 11 | }, |
13 | 12 | "dependencies": { |
14 | | - "@commitlint/cli": "19.8.1", |
15 | | - "@commitlint/config-conventional": "19.8.1", |
16 | | - "@commitlint/types": "19.8.1", |
17 | | - "@eslint/js": "9.33.0", |
| 13 | + "@eslint/js": "10.0.1", |
18 | 14 | "@types/cross-spawn": "6.0.6", |
19 | 15 | "@types/fs-extra": "11.0.4", |
20 | 16 | "@types/minimist": "1.2.5", |
21 | | - "@types/node": "24.3.0", |
| 17 | + "@types/node": "25.6.0", |
22 | 18 | "@types/postcss-url": "10.0.4", |
23 | 19 | "@types/prompts": "2.4.9", |
24 | | - "@types/react": "19.1.10", |
25 | | - "@types/react-dom": "19.1.7", |
26 | | - "@types/semver": "7.7.0", |
27 | | - "@vitejs/plugin-legacy": "7.2.1", |
28 | | - "@vitejs/plugin-react": "5.0.0", |
29 | | - "@vitejs/plugin-vue": "6.0.1", |
30 | | - "acorn": "8.15.0", |
31 | | - "acorn-walk": "8.3.4", |
32 | | - "element-plus": "2.10.7", |
33 | | - "eslint": "9.33.0", |
| 20 | + "@types/react": "19.2.14", |
| 21 | + "@types/react-dom": "19.2.3", |
| 22 | + "@types/semver": "7.7.1", |
| 23 | + "@vitejs/plugin-legacy": "8.0.1", |
| 24 | + "@vitejs/plugin-react": "6.0.1", |
| 25 | + "@vitejs/plugin-vue": "6.0.6", |
| 26 | + "acorn": "8.16.0", |
| 27 | + "acorn-walk": "8.3.5", |
| 28 | + "element-plus": "2.13.7", |
| 29 | + "eslint": "10.2.0", |
34 | 30 | "eslint-config-prettier": "10.1.8", |
35 | | - "eslint-plugin-unused-imports": "4.2.0", |
36 | | - "execa": "9.6.0", |
37 | | - "fs-extra": "11.3.1", |
38 | | - "lint-staged": "16.1.5", |
39 | | - "magic-string": "0.30.17", |
| 31 | + "eslint-plugin-unused-imports": "4.4.1", |
| 32 | + "execa": "9.6.1", |
| 33 | + "fs-extra": "11.3.4", |
| 34 | + "lint-staged": "16.4.0", |
| 35 | + "magic-string": "0.30.21", |
40 | 36 | "minimist": "1.2.8", |
41 | 37 | "normalize.css": "8.0.1", |
42 | 38 | "picocolors": "1.1.1", |
43 | | - "pinia": "3.0.3", |
| 39 | + "pinia": "3.0.4", |
44 | 40 | "postcss-url": "10.1.3", |
45 | | - "prettier": "3.6.2", |
46 | | - "react": "19.1.1", |
47 | | - "react-dom": "19.1.1", |
48 | | - "sass-embedded": "1.90.0", |
49 | | - "semver": "7.7.2", |
| 41 | + "prettier": "3.8.2", |
| 42 | + "react": "19.2.5", |
| 43 | + "react-dom": "19.2.5", |
| 44 | + "sass-embedded": "1.99.0", |
| 45 | + "semver": "7.7.4", |
50 | 46 | "simple-git-hooks": "2.13.1", |
51 | | - "solid-js": "1.9.9", |
52 | | - "terser": "5.43.1", |
53 | | - "tsup": "8.5.0", |
54 | | - "tsx": "4.20.4", |
55 | | - "typescript": "5.9.2", |
56 | | - "typescript-eslint": "8.40.0", |
57 | | - "unimport": "5.2.0", |
58 | | - "unocss": "66.4.2", |
59 | | - "unplugin-auto-import": "20.0.0", |
60 | | - "vite": "7.1.2", |
61 | | - "vite-plugin-solid": "2.11.8", |
62 | | - "vue": "3.5.18" |
| 47 | + "solid-js": "1.9.12", |
| 48 | + "terser": "5.46.1", |
| 49 | + "tsdown": "0.21.10", |
| 50 | + "tsx": "4.21.0", |
| 51 | + "typescript": "6.0.2", |
| 52 | + "typescript-eslint": "8.58.1", |
| 53 | + "unimport": "6.1.0", |
| 54 | + "unocss": "66.6.8", |
| 55 | + "unplugin-auto-import": "21.0.0", |
| 56 | + "vite": "8.0.8", |
| 57 | + "vite-plugin-solid": "2.11.12", |
| 58 | + "vue": "3.5.32" |
63 | 59 | }, |
64 | 60 | "simple-git-hooks": { |
65 | | - "pre-commit": "pnpm exec lint-staged", |
66 | | - "commit-msg": "pnpm exec commitlint --edit $1" |
67 | | - }, |
68 | | - "commitlint": { |
69 | | - "extends": [ |
70 | | - "@commitlint/config-conventional" |
71 | | - ], |
72 | | - "rules": { |
73 | | - "subject-case": [ |
74 | | - 0 |
75 | | - ] |
76 | | - } |
| 61 | + "pre-commit": "pnpm exec lint-staged" |
77 | 62 | }, |
78 | 63 | "lint-staged": { |
79 | 64 | "*.{js,cjs,mjs,ts}": [ |
|
85 | 70 | ] |
86 | 71 | }, |
87 | 72 | "volta": { |
88 | | - "node": "24.4.1", |
89 | | - "pnpm": "10.14.0" |
| 73 | + "node": "24.15.0", |
| 74 | + "pnpm": "10.33.2" |
90 | 75 | }, |
91 | | - "packageManager": "pnpm@10.14.0" |
| 76 | + "packageManager": "pnpm@10.33.2" |
92 | 77 | } |
0 commit comments