-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.61 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
56
57
58
59
60
61
62
63
64
65
{
"name": "eslint-plugin-sakina",
"version": "6.1.0",
"description": "eslint config rules for quick use",
"author": "fz6m",
"homepage": "https://github.com/xn-sakina/eslint-plugin-sakina#README",
"repository": {
"type": "git",
"url": "https://github.com/xn-sakina/eslint-plugin-sakina"
},
"exports": {
"./package.json": "./package.json",
"./react": "./react.js",
"./recommended": "./recommended.js"
},
"files": [
"dist",
"react.js",
"recommended.js"
],
"keywords": [
"eslint",
"eslint-plugin",
"sakina",
"prettier",
"eslint-prettier",
"eslint-react"
],
"scripts": {
"dev": "tsc -w",
"build": "rimraf dist && tsc",
"prepublishOnly": "pnpm build",
"push": "npm publish --registry=https://registry.npmjs.com/",
"prepare": "husky install",
"lint": "eslint src"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.16.11",
"commit-verify": "^1.1.0",
"eslint": "^9.12.0",
"execa": "^5.1.1",
"fs-extra": "^11.2.0",
"husky": "^9.1.6",
"rimraf": "^6.0.1",
"typescript": "^5.6.3",
"eslint-plugin-sakina": "workspace:*",
"@typescript-eslint/types": "^8.8.1"
},
"dependencies": {
"@typescript-eslint/parser": "^8.8.1",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "5.0.0",
"prettier": "^3.3.3",
"globals": "^15.11.0"
},
"peerDependencies": {
"eslint": ">=9",
"typescript": ">=5"
},
"license": "MIT",
"packageManager": "pnpm@9.11.0"
}