-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
{
"name": "eslint-processor-html",
"version": "1.0.1",
"description": "ESLint HTML processor",
"type": "module",
"main": "./build/index.js",
"exports": {
".": {
"types": "./build/index.d.ts",
"import": "./build/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "playwright test",
"build": "npm run build:type && npm run build:js",
"build:type": "tsc -b --noCheck --emitDeclarationOnly",
"build:js": "esbuild src/index.ts --outdir=build --format=esm --packages=external --sourcemap --bundle --minify",
"lint": "eslint --ext .ts,.tsx .",
"prepare": "npm run build"
},
"keywords": [
"eslint",
"processor",
"html"
],
"repository": "github:PaperStrike/eslint-processor-html",
"license": "ISC",
"files": [
"build",
"!build/cache",
"!*.tsbuildinfo",
"CHANGELOG.*"
],
"devDependencies": {
"@eslint/compat": "^1.2.7",
"@eslint/js": "^9.21.0",
"@eslint/markdown": "^6.2.2",
"@playwright/test": "^1.50.1",
"@stylistic/eslint-plugin": "^4.1.0",
"@types/node": "^22.13.8",
"esbuild": "~0.25.0",
"eslint": "^9.21.0",
"typescript": "~5.7.3",
"typescript-eslint": "^8.25.0"
},
"dependencies": {
"htmlparser2": "^10.0.0"
}
}