-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.08 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "domparser-rs",
"version": "0.0.0",
"packageManager": "yarn@4.3.1",
"main": "domparser.js",
"types": "domparser.d.ts",
"files": [
"index.js",
"index.d.ts",
"domparser.js",
"domparser.d.ts",
"README.md"
],
"workspaces": [
"npm/*"
],
"napi": {
"binaryName": "domparser",
"package": {
"name": "domparser"
},
"targets": [
"aarch64-apple-darwin",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"x86_64-unknown-linux-musl",
"x86_64-unknown-linux-gnu",
"x86_64-pc-windows-msvc",
"x86_64-apple-darwin"
],
"packageName": "domparser"
},
"keywords": [
"htmlparser",
"jquery",
"selector",
"scraper",
"parser",
"dom",
"html",
"rust",
"napi"
],
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^3.0.0",
"@taplo/cli": "^0.7.0",
"cheerio": "^1.1.2",
"htmlparser-benchmark": "^1.1.3",
"husky": "^8.0.0",
"js-beautify": "^1.15.1",
"typescript": "^5.5.3"
},
"engines": {
"node": ">= 10"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release --package domparser_napi --js index.js",
"postbuild": "node scripts/postbuild.js",
"build:debug": "napi build --platform --package domparser_napi --js index.js && node scripts/postbuild.js",
"prepublishOnly": "napi prepublish -t npm --skip-optional-publish --no-gh-release",
"test": "node --test",
"benchmark": "node ./benchmark/benchmark.mjs",
"prepare": "husky install"
},
"repository": "https://github.com/utooland/domparser-rs",
"description": "A super fast html parser and manipulator written in rust.",
"optionalDependencies": {
"domparser-darwin-arm64": "0.0.0",
"domparser-darwin-x64": "0.0.0",
"domparser-linux-arm64-gnu": "0.0.0",
"domparser-linux-arm64-musl": "0.0.0",
"domparser-linux-x64-gnu": "0.0.0",
"domparser-linux-x64-musl": "0.0.0",
"domparser-win32-arm64-msvc": "0.0.0",
"domparser-win32-x64-msvc": "0.0.0"
}
}