-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 944 Bytes
/
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": "eslint-rewrite",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"test": "npm test --workspaces --if-present",
"build": "node scripts/build.js",
"build:readme": "node tools/update-readme.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test:jsr": "npm run test:jsr --workspaces --if-present"
},
"workspaces": [
"packages/*"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"!(*.{js,ts})": "prettier --write --ignore-unknown"
},
"devDependencies": {
"eslint": "^9.11.1",
"eslint-config-eslint": "^11.0.0",
"got": "^14.4.1",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.0",
"yorkie": "^2.0.0"
}
}