-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.08 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
66
67
68
69
70
71
72
73
{
"name": "eslint-plugin-clsx",
"version": "0.0.10",
"description": "An ESLint plugin for clsx/classnames",
"main": "dist/index.js",
"scripts": {
"build": "rimraf dist && npm run generate-rules && tsup",
"lint": "npm-run-all \"lint:*\"",
"lint:tsc": "tsc",
"lint:docs": "markdownlint \"**/*.md\"",
"lint:eslint-docs": "npm run update:eslint-docs -- --check",
"lint:js": "eslint .",
"update:eslint-docs": "npm run build && eslint-doc-generator",
"generate-rules": "node ./generate-all-rules.js && eslint ./src/rules/*.generated.ts --fix",
"release": "npm run build && changeset publish",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/temoncher/eslint-plugin-clsx.git"
},
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"clsx",
"classnames"
],
"author": "Artem Baranov <temoncher@yandex.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/temoncher/eslint-plugin-clsx/issues"
},
"homepage": "https://github.com/temoncher/eslint-plugin-clsx#readme",
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/eslint": "^9.6.1",
"@types/esquery": "^1.5.4",
"@types/node": "^22.13.0",
"@typescript-eslint/eslint-plugin": "^8.23.0",
"@typescript-eslint/parser": "^8.23.0",
"@typescript-eslint/rule-tester": "^8.23.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-doc-generator": "2.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"markdownlint-cli": "^0.44.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.5"
},
"dependencies": {
"@typescript-eslint/types": "^8.23.0",
"@typescript-eslint/utils": "^8.23.0",
"esquery": "^1.6.0",
"remeda": "^2.20.0"
},
"peerDependencies": {
"eslint": "^8 || ^9"
},
"files": [
"*.md",
"!{CONTRIBUTING,RELEASE}.md",
"LICENSE",
"docs",
"dist"
]
}