-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.91 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.91 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
70
71
72
73
74
{
"name": "@stencil/eslint-plugin",
"version": "1.1.0",
"description": "ESLint rules specific to Stencil JS projects.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"stencil",
"stencileslint",
"stencil eslint"
],
"contributors": [
"Tom Chinery <tom.chinery@addtoevent.co.uk>",
"Jack Woodward <jack@addtoevent.co.uk>",
"Ionic Team <strteam@ionicframework.com>",
"d0whc3r <d0whc3r@gmail.com>",
"Christian Bromann <christian.bromann@outsystems.com>"
],
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "rolldown --config rolldown.config.ts",
"test": "vitest --run",
"version": "npm run build",
"watch": "npm run build -- --watch"
},
"dependencies": {
"eslint-utils": "^3.0.0",
"jsdom": "^27.0.1",
"tsutils": "^3.21.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0 || ^8.0.0",
"@typescript-eslint/parser": "^7.0.0 || ^8.0.0",
"eslint": "^8.0.0 || ^9.0.0 || ^10.0.0",
"eslint-plugin-react": "^7.37.4",
"typescript": "^4.9.4 || ^5.0.0"
},
"devDependencies": {
"@types/eslint": "9.6.1",
"@types/eslint-utils": "^3.0.5",
"@types/estree": "^1.0.8",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.9.2",
"@typescript-eslint/eslint-plugin": "^8.46.2",
"@typescript-eslint/parser": "^8.46.2",
"@vitest/coverage-v8": "^4.0.5",
"eslint": "^9.38.0",
"eslint-plugin-react": "^7.37.5",
"rolldown": "^1.0.0-beta.27",
"rolldown-plugin-dts": "^0.17.3",
"typescript": "^5.9.3",
"vitest": "^4.0.5"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stenciljs/eslint-plugin.git"
},
"license": "MIT"
}