-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
{
"name": "@stencil/eslint-plugin",
"version": "1.0.0",
"description": "ESLint rules specific to Stencil JS projects.",
"keywords": [
"eslint",
"eslintplugin",
"eslint-plugin",
"stencil",
"stencileslint",
"stencil eslint"
],
"contributors": [
"Tom Chinery <[email protected]>",
"Jack Woodward <[email protected]>",
"Ionic Team <[email protected]>",
"d0whc3r <[email protected]>",
"Christian Bromann <[email protected]>"
],
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"files": [
"dist/index.js"
],
"scripts": {
"build": "rollup -c",
"test": "vitest --run",
"version": "npm run build"
},
"dependencies": {
"eslint-utils": "^3.0.0",
"jsdom": "^26.0.0",
"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",
"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.6",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.5",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-typescript": "^12.1.2",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.21.0",
"eslint-plugin-react": "^7.37.4",
"rollup": "^4.34.8",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stenciljs/eslint-plugin.git"
},
"license": "MIT"
}