-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.56 KB
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
{
"publishConfig": {
"access": "public"
},
"name": "@moox/eslint-plugin-react-strict-dom",
"version": "0.1.1",
"description": "ESLint plugin for React Strict DOM",
"keywords": [
"eslint",
"eslint-plugin",
"react",
"react-strict-dom",
"css",
"styles",
"linting"
],
"repository": {
"type": "git",
"url": "git+https://github.com/MoOx/eslint-plugin-react-strict-dom.git"
},
"bugs": {
"url": "https://github.com/MoOx/eslint-plugin-react-strict-dom/issues"
},
"homepage": "https://github.com/MoOx/eslint-plugin-react-strict-dom#readme",
"author": {
"name": "Maxime Thirouin",
"url": "https://github.com/MoOx"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"type": "module",
"main": "index.js",
"files": [
"index.js",
"docs",
"rules",
"!rules/**.test.js"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf rules/",
"test": "npm run build && node rules/no-unused-styles.test.js",
"release": "npmpub"
},
"dependencies": {
"@typescript-eslint/utils": "^8.38.0"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/estree": "^1.0.6",
"@types/node": "^24.0.15",
"@typescript-eslint/parser": "^8.37.0",
"@typescript-eslint/rule-tester": "^8.38.0",
"@typescript-eslint/typescript-estree": "^8.38.0",
"eslint": "^9.31.0",
"husky": "^9.1.7",
"npmpub": "^5.1.1",
"prettier": "^3.6.2",
"typescript": "^5.8.3"
},
"prettier": {
"trailingComma": "all"
}
}