-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"name": "eslint-plugin-qwik",
"description": "An Open-Source sub-framework designed with a focus on server-side-rendering, lazy-loading, and styling/animation.",
"version": "2.0.0-beta.14",
"author": "Qwik Team",
"bugs": "https://github.com/QwikDev/qwik/issues",
"dependencies": {
"@typescript-eslint/utils": "^8.38.0",
"jsx-ast-utils": "^3.3.5"
},
"devDependencies": {
"@qwik.dev/core": "workspace:*",
"@qwik.dev/router": "workspace:*",
"@types/estree": "1.0.8",
"@typescript-eslint/rule-tester": "8.38.0",
"redent": "4.0.0"
},
"engines": {
"node": "^18.17.0 || ^20.3.0 || >=21.0.0"
},
"files": [
"README.md",
"dist"
],
"homepage": "https://github.com/QwikDev/qwik#readme",
"keywords": [
"eslint",
"qwik"
],
"license": "MIT",
"main": "dist/index.js",
"peerDependencies": {
"eslint": "^8.57.0 || ^9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/QwikDev/qwik.git",
"directory": "packages/eslint-rules"
},
"scripts": {
"test": "cd ../..; ./node_modules/.bin/vitest packages/eslint-plugin-qwik/qwik.unit.ts"
}
}