|
12 | 12 | "build": "nuxt build", |
13 | 13 | "dev": "nuxt dev", |
14 | 14 | "dev:docs": "pnpm run --filter npmx-docs dev --port=3001", |
15 | | - "lint": "vite lint && vite fmt --check", |
16 | | - "lint:fix": "vite lint --fix && vite fmt", |
| 15 | + "lint": "oxlint && oxfmt --check .", |
| 16 | + "lint:fix": "oxlint --fix && oxfmt .", |
17 | 17 | "generate": "nuxt generate", |
18 | 18 | "npmx-connector": "pnpm --filter npmx-connector dev", |
19 | 19 | "preview": "nuxt preview", |
20 | 20 | "postinstall": "nuxt prepare && simple-git-hooks", |
21 | | - "test": "vite test", |
| 21 | + "test": "vitest", |
22 | 22 | "test:browser": "playwright test", |
23 | 23 | "test:browser:ui": "playwright test --ui", |
24 | 24 | "test:browser:update": "playwright test --update-snapshots", |
25 | | - "test:nuxt": "vite test --project nuxt", |
| 25 | + "test:nuxt": "vitest --project nuxt", |
26 | 26 | "test:types": "nuxt prepare && vue-tsc -b --noEmit && pnpm --filter npmx-connector test:types", |
27 | | - "test:unit": "vite test --project unit" |
| 27 | + "test:unit": "vitest --project unit" |
28 | 28 | }, |
29 | 29 | "dependencies": { |
30 | 30 | "@deno/doc": "jsr:^0.189.1", |
|
70 | 70 | "@vite-pwa/nuxt": "1.1.0", |
71 | 71 | "@vitest/browser-playwright": "^4.0.18", |
72 | 72 | "@vitest/coverage-v8": "^4.0.18", |
73 | | - "@voidzero-dev/vite-plus-core": "latest", |
74 | 73 | "@vue/test-utils": "2.4.6", |
75 | 74 | "axe-core": "^4.11.1", |
76 | 75 | "happy-dom": "20.3.5", |
77 | 76 | "lint-staged": "16.2.7", |
78 | 77 | "marked": "17.0.1", |
| 78 | + "oxfmt": "0.27.0", |
| 79 | + "oxlint": "^1.42.0", |
79 | 80 | "playwright-core": "1.57.0", |
80 | 81 | "simple-git-hooks": "2.13.1", |
81 | 82 | "spdx-license-list": "^6.11.0", |
82 | 83 | "std-env": "3.10.0", |
83 | 84 | "typescript": "5.9.3", |
84 | 85 | "unocss": "66.6.0", |
85 | | - "vite-plus": "latest", |
86 | | - "vitest": "npm:@voidzero-dev/vite-plus-test@latest", |
| 86 | + "vitest": "^4.0.18", |
87 | 87 | "vue-tsc": "3.2.2" |
88 | 88 | }, |
89 | | - "pnpm": { |
90 | | - "patchedDependencies": { |
91 | | - "@jsr/deno__doc@0.189.1": "patches/@jsr__deno__doc@0.189.1.patch" |
92 | | - } |
93 | | - }, |
94 | 89 | "simple-git-hooks": { |
95 | 90 | "pre-commit": "npx lint-staged" |
96 | 91 | }, |
97 | 92 | "lint-staged": { |
98 | 93 | "*.{js,ts,mjs,cjs,vue}": [ |
99 | | - "vite lint --fix" |
| 94 | + "oxlint --fix" |
100 | 95 | ], |
101 | 96 | "*.{js,ts,mjs,cjs,vue,json,md,html,css}": [ |
102 | | - "vite fmt" |
| 97 | + "oxfmt" |
103 | 98 | ] |
104 | 99 | }, |
105 | 100 | "packageManager": "pnpm@10.28.1" |
|
0 commit comments