| 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
 | | { |  |     "name": "domelementtype", |  |     "version": "2.3.0", |  |     "description": "all the types of nodes in htmlparser2's dom", |  |     "author": "Felix Boehm <me@feedic.com>", |  |     "license": "BSD-2-Clause", |  |     "funding": [ |  |         { |  |             "type": "github", |  |             "url": "https://github.com/sponsors/fb55" |  |         } |  |     ], |  |     "sideEffects": false, |  |     "main": "lib/index.js", |  |     "types": "lib/index.d.ts", |  |     "module": "lib/esm/index.js", |  |     "exports": { |  |         "require": "./lib/index.js", |  |         "import": "./lib/esm/index.js" |  |     }, |  |     "files": [ |  |         "lib/**/*" |  |     ], |  |     "repository": { |  |         "type": "git", |  |         "url": "git://github.com/fb55/domelementtype.git" |  |     }, |  |     "keywords": [ |  |         "dom", |  |         "element", |  |         "types", |  |         "htmlparser2" |  |     ], |  |     "scripts": { |  |         "test": "npm run lint && prettier --check **/*.{ts,json,md}", |  |         "lint": "eslint src", |  |         "format": "prettier --write **/*.{ts,json,md}", |  |         "build": "npm run build:cjs && npm run build:esm", |  |         "build:cjs": "tsc", |  |         "build:esm": "tsc --module esnext --target es2019 --outDir lib/esm && echo '{\"type\":\"module\"}' > lib/esm/package.json", |  |         "prepare": "npm run build" |  |     }, |  |     "prettier": { |  |         "tabWidth": 4 |  |     }, |  |     "devDependencies": { |  |         "@typescript-eslint/eslint-plugin": "^5.18.0", |  |         "@typescript-eslint/parser": "^5.18.0", |  |         "eslint": "^8.12.0", |  |         "eslint-config-prettier": "^8.5.0", |  |         "prettier": "^2.6.2", |  |         "typescript": "^4.6.3" |  |     } |  | } | 
 |