-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 976 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 976 Bytes
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
{
"name": "@maxmilton/html-parser",
"version": "0.0.12",
"description": "An efficient, compact HTML5 parser with blistering speed.",
"repository": "github:maxmilton/html-parser",
"bugs": "https://github.com/maxmilton/html-parser/issues",
"author": "Max Milton <[email protected]>",
"license": "MIT",
"sideEffects": false,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"build": "bun build.ts",
"lint": "bun lint:fmt && bun lint:js && bun lint:ts",
"lint:fmt": "biome check",
"lint:js": "eslint",
"lint:ts": "tsc --noEmit",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "2.3.13",
"@eslint/js": "10.0.1",
"@maxmilton/eslint-config": "0.3.0",
"@types/bun": "1.3.11",
"dts-buddy": "0.6.2",
"eslint": "10.1.0",
"eslint-plugin-unicorn": "64.0.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.2"
}
}