-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
{
"name": "eslint-config-vladpuz",
"version": "0.24.0",
"type": "module",
"description": "ESLint config based on stylistic and love",
"repository": {
"type": "git",
"url": "git+https://github.com/vladpuz/eslint-config-vladpuz.git"
},
"author": "Vladislav Puzyrev",
"license": "MIT",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"vladpuz",
"eslint",
"eslintconfig"
],
"scripts": {
"build": "tsc --project tsconfig.build.json",
"check": "npm run typecheck && npm run lint && npm run format",
"clean": "rimraf build",
"format": "prettier --check .",
"lint": "eslint .",
"prepack": "npm run clean && npm run build && npm run check",
"prepare": "husky",
"typecheck": "tsc --noEmit",
"upgrade": "npm-check-updates --peer --upgrade && npm update"
},
"peerDependencies": {
"eslint": "^9.0.0"
},
"dependencies": {
"@stylistic/eslint-plugin": "^2.12.1",
"eslint-config-love": "^113.0.0",
"eslint-plugin-perfectionist": "^4.4.0"
},
"devDependencies": {
"@tsconfig/strictest": "^2.0.5",
"@types/react": "^19.0.2",
"husky": "^9.1.7",
"npm-check-updates": "^17.1.12",
"prettier": "^3.4.2",
"prettier-config-vladpuz": "^0.9.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.2"
}
}