forked from yukukotani/eslint-plugin-chakra-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "eslint-plugin-chakra-ui",
"version": "0.11.0",
"description": "ESLint Plugin for Chakra UI",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"Chakra UI",
"chakra-ui"
],
"author": "Yuku Kotani (yukukotani@gmail.com)",
"repository": {
"type": "git",
"url": "https://github.com/yukukotani/eslint-plugin-chakra-ui"
},
"main": "dist/index.js",
"scripts": {
"lint": "run-p lint:*",
"lint:eslint": "eslint --ext .ts,.tsx ./src",
"lint:tsc": "tsc --noEmit",
"lint:prettier": "prettier --check ./src",
"fix:prettier": "prettier --write ./src",
"build": "rm -rf ./dist && swc ./src -d dist",
"test": "vitest run src/__tests__",
"test:watch": "watchlist src -- pnpm run test",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@typescript-eslint/utils": "^6.21.0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.4.1",
"@types/node": "^18.19.17",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@typescript-eslint/rule-tester": "^6.21.0",
"@typescript-eslint/types": "^6.21.0",
"eslint": "^8.56.0",
"eslint-plugin-eslint-plugin": "^5.3.0",
"eslint-plugin-unused-imports": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"vite": "^4.5.2",
"vitest": "^0.34.6",
"watchlist": "^0.3.1"
},
"engines": {
"node": "12.x || 14.x || >= 16",
"pnpm": ">=8"
},
"peerDependencies": {
"eslint": ">=6"
},
"license": "MIT",
"files": [
"dist"
]
}