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
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ Install dependencies, then:

```sh
pnpm install # first time only

pnpm dev # start the dev server
pnpm test # run the tests
```
Expand All @@ -29,4 +28,3 @@ Create a `.env.local` to set the default minimum width/height (in pixels) for a
VITE_DEFAULT_SASH_MIN_WIDTH=100
VITE_DEFAULT_SASH_MIN_HEIGHT=100
```

13 changes: 12 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,23 @@
"scripts": {
"dev": "vite",
"build": "vite build",
"test": "vitest"
"test": "vitest",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec lint-staged"
},
"lint-staged": {
"*.{js,html,css,json,md,yml,yaml}": "prettier --write"
},
"devDependencies": {
"jsdom": "^29.1.1",
"lint-staged": "^17.0.7",
"prettier": "^3.8.3",
"prettier-plugin-brace-style": "^0.10.1",
"simple-git-hooks": "^2.13.1",
"vite": "^8.0.13",
"vitest": "^4.1.6"
}
Expand Down
Loading