-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.78 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "portadom",
"version": "1.0.4",
"private": false,
"description": "Single DOM manipulation interface across Browser API, JSDOM, Cheerio, Playwright",
"author": "Juro Oravec <juraj.oravec.josefson@gmail.com>",
"homepage": "https://github.com/jurooravec/portadom#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jurooravec/portadom.git"
},
"bugs": {
"url": "https://github.com/jurooravec/portadom/issues"
},
"license": "MIT",
"keywords": [
"dom",
"manipulation",
"browser",
"jsdom",
"cheerio",
"playwright",
"crawler",
"scraper"
],
"files": [
"dist"
],
"exports": {
".": "./dist/cjs/index.js"
},
"module": "dist/esm/index.js",
"types": "dist/cjs/index.d.js",
"bin": "dist/cjs/cli/index.js",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/cjs/index.js",
"start:dev": "ts-node ./src/index.ts",
"build": "npm run build:cjs",
"build:all": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint ./src --ext .ts --fix",
"gen:docs": "typedoc src/index.ts --plugin typedoc-plugin-markdown --tsconfig tsconfig.base.json --out ./docs/typedoc"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cheerio": "^1.0.0-rc.12",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"playwright": "^1.37.1",
"prettier": "^2.5.1",
"ts-node": "^10.9.1",
"typedoc": "^0.25.0",
"typedoc-plugin-markdown": "^3.16.0",
"typescript": "^5.0.4"
}
}