|
6 | 6 | "type": "module",
|
7 | 7 | "main": "dist/main.js",
|
8 | 8 | "scripts": {
|
9 |
| - "prepare": "husky && git submodule init", |
10 |
| - "build": "tsc && vite build", |
| 9 | + "build": "vite build", |
11 | 10 | "build:clean": "rm -rf node_modules/ dist/ coverage/ docs/",
|
12 |
| - "build:release": "tsc && vite build --mode production", |
13 |
| - "build:watch": "vite build --watch --mode development", |
14 | 11 | "build:docs": "typedoc --validation",
|
15 |
| - "lint": "eslint .", |
16 |
| - "lint:fix": "eslint --fix .", |
17 |
| - "lint:commit": "commitlint --edit", |
18 |
| - "format": "prettier --check .", |
19 |
| - "format:fix": "prettier --write .", |
| 12 | + "build:typescript": "tsc --build", |
| 13 | + "build:watch": "vite build --watch", |
| 14 | + "build:watch-docs": "typedoc --validation --watch", |
| 15 | + "build:watch-typescript": "tsc --build --watch", |
| 16 | + "commitlint": "commitlint --edit", |
| 17 | + "lint": "eslint . && prettier --check .", |
| 18 | + "lint:fix": "prettier --write . && eslint --fix .", |
| 19 | + "prepare": "husky", |
20 | 20 | "test": "vitest run",
|
21 | 21 | "test:coverage": "vitest run --coverage",
|
22 | 22 | "test:watch": "vitest --watch",
|
23 |
| - "test:watch-coverage": "vitest --watch --coverage" |
| 23 | + "test:watch-coverage": "vitest --coverage --watch" |
24 | 24 | },
|
25 | 25 | "dependencies": {
|
26 | 26 | "@preact/signals": "^2.0.1",
|
|
0 commit comments