-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.34 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "ahx-worklet",
"type": "module",
"version": "0.0.0",
"private": true,
"scripts": {
"prepare": "simple-git-hooks",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint . --fix",
"lint-check": "eslint .",
"type-check": "tsc --noEmit --composite false",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"bench": "vitest bench"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@types/audioworklet": "^0.0.63",
"@types/node": "^22.8.6",
"@vitest/coverage-v8": "^2.1.4",
"eslint": "^9.14.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.4"
},
"simple-git-hooks": {
"commit-msg": "npx --no -- commitlint --edit",
"pre-commit": "npx --no -- lint-staged",
"pre-push": "npm run test"
},
"lint-staged": {
"*": [
"eslint --fix",
"prettier --write --list-different --ignore-unknown"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"prettier": {
"arrowParens": "avoid",
"printWidth": 100,
"singleQuote": true,
"experimentalTernaries": true
}
}