-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "js",
"private": true,
"engines": {
"node": ">=20"
},
"workspaces": ["packages/*", "playground"],
"author": "r17x <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"scripts": {
"playground": "cd playground && yarn vite",
"prepare": "husky",
"release": "yarn exec multi-semantic-release",
"test": "vitest",
"build": "yarn workspaces foreach -Rpt --since --no-private run build",
"lint": "run-s \"lint:*\"",
"lint:biome": "biome ci .",
"lint:test": "echo \"No lint:test script specified\""
},
"lint-staged": {
"*.{ts,tsx}": ["biome check --fix", "vitest related --run", "git add"],
"*": ["biome check --write", "git add"]
},
"dependencies": {
"@anolilab/multi-semantic-release": "^1.1.3",
"@biomejs/biome": "^1.9.2",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@vitest/coverage-v8": "^2",
"commitlint-config-squash-pr": "^1.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"semantic-release": "^24.1.1",
"vite-tsconfig-paths": "^5.0.1",
"vitest": "^2"
}
}