1{
2    "name": "parse5-parser-stream",
3    "type": "module",
4    "description": "Streaming HTML parser with scripting support.",
5    "version": "7.1.2",
6    "author": "Ivan Nikulin <ifaaan@gmail.com> (https://github.com/inikulin)",
7    "contributors": "https://github.com/inikulin/parse5/graphs/contributors",
8    "homepage": "https://github.com/inikulin/parse5",
9    "funding": "https://github.com/inikulin/parse5?sponsor=1",
10    "keywords": [
11        "parse5",
12        "parser",
13        "stream",
14        "streaming"
15    ],
16    "license": "MIT",
17    "main": "dist/cjs/index.js",
18    "module": "dist/index.js",
19    "types": "dist/index.d.ts",
20    "exports": {
21        "import": "./dist/index.js",
22        "require": "./dist/cjs/index.js"
23    },
24    "dependencies": {
25        "parse5": "^7.0.0"
26    },
27    "scripts": {
28        "build:cjs": "tsc --module CommonJS --target ES6 --outDir dist/cjs && echo '{\"type\":\"commonjs\"}' > dist/cjs/package.json"
29    },
30    "repository": {
31        "type": "git",
32        "url": "git://github.com/inikulin/parse5.git"
33    },
34    "files": [
35        "dist/cjs/package.json",
36        "dist/**/*.js",
37        "dist/**/*.d.ts"
38    ]
39}
40