Skip to content

Commit f62f363

Browse files
committed
Update dependencies
1 parent d38ea48 commit f62f363

File tree

10 files changed

+550
-2139
lines changed

10 files changed

+550
-2139
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.DS_Store
2-
.husky/_
2+
.vite-hooks/_
33
coverage
44
dist
55
node_modules

.husky/pre-commit

Lines changed: 0 additions & 10 deletions
This file was deleted.

.vite-hooks/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
vp staged

.vscode/settings.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
"files.exclude": {
33
".editorconfig": true
44
},
5+
"js/ts.tsdk.path": "node_modules/typescript/lib",
56
"search.exclude": {
67
"**/*.snap": true,
78
"pnpm-lock.yaml": true
8-
},
9-
"typescript.tsdk": "node_modules/typescript/lib"
9+
}
1010
}

oxlint.config.ts

Lines changed: 0 additions & 6 deletions
This file was deleted.

package.json

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,32 +26,29 @@
2626
"engines": {
2727
"node": ">=22"
2828
},
29-
"packageManager": "pnpm@10.32.1",
29+
"packageManager": "pnpm@10.33.0",
3030
"devDependencies": {
31-
"@standard-config/eslint": "^1.6.1",
31+
"@standard-config/eslint": "^2.0.1",
3232
"@standard-config/oxlint": "^1.6.1",
3333
"@standard-config/prettier": "^1.11.2",
34-
"@standard-config/tsconfig": "^2.0.2",
34+
"@standard-config/tsconfig": "^3.1.0",
3535
"@vitest/coverage-v8": "^4.1.2",
3636
"eslint": "^10.1.0",
37-
"husky": "^9.1.7",
38-
"oxlint": "^1.57.0",
39-
"oxlint-tsgolint": "^0.18.1",
4037
"prettier": "^3.8.1",
4138
"publint": "^0.3.18",
42-
"tsdown": "^0.21.6",
43-
"typescript": "^5.9.3",
39+
"typescript": "^6.0.2",
40+
"vite-plus": "^0.1.14",
4441
"vitest": "^4.1.2"
4542
},
4643
"scripts": {
47-
"build": "tsdown",
44+
"build": "vp pack",
4845
"fix": "pnpm format && pnpm lint && pnpm format",
4946
"format": "prettier --ignore-unknown --log-level=warn --write .",
5047
"format:check": "prettier --check --ignore-unknown .",
51-
"lint": "oxlint --fix",
52-
"lint:check": "oxlint --deny-warnings --type-check",
48+
"lint": "vp lint --fix",
49+
"lint:check": "vp lint --deny-warnings --type-check",
5350
"prepack": "pnpm run '/^(format:check|lint:check|test|typecheck)$/' && pnpm build",
54-
"prepare": "husky",
51+
"prepare": "vp config",
5552
"test": "vitest run",
5653
"typecheck": "tsc --noEmit"
5754
}

0 commit comments

Comments
 (0)