Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ node_modules

# Generate output
dist
coverage

# Stores VSCode versions used for testing VSCode extensions
.vscode-test
Expand Down
2 changes: 2 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
.vscode
build
dist
coverage
node_modules
public
.github
tmp
pnpm-lock.yaml
*.yml
9 changes: 9 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"typescript.tsdk": "node_modules/typescript/lib",
}
13 changes: 11 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,27 @@
"@semantic-release/github": "^12.0.3",
"@semantic-release/npm": "^13.1.3",
"@semantic-release/release-notes-generator": "^14.1.0",
"@testing-library/react": "^16.3.0",
"@types/react": "^19.2.10",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitest/coverage-v8": "^2.1.9",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"jsdom": "^27.4.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"prettier-plugin-organize-imports": "^4.3.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"semantic-release": "^25.0.3",
"typescript": "^5.9.3",
"vite": "^6.4.1",
"vite-plugin-dts": "^4.5.4"
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=22.14.0"
Expand Down Expand Up @@ -92,6 +98,9 @@
"prepare": "if [ \"$NODE_ENV\" != \"production\" ]; then husky; fi",
"setup": "pnpm install && husky",
"release": "semantic-release",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck:main": "tsc -b .",
"typecheck:playground": "pnpm build && pnpm -C playground exec tsc -p tsconfig.json",
"typecheck": "pnpm typecheck:main && pnpm typecheck:playground",
Expand Down
4 changes: 2 additions & 2 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
"devDependencies": {
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^4.4.1",
"@vitejs/plugin-react": "^5.1.2",
"typescript": "^5.9.3",
"vite": "^6.4.1"
"vite": "^7.3.1"
}
}
Loading