-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.4 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
{
"name": "trafilatura",
"version": "0.2.0",
"description": "Fast and accurate web content extraction",
"keywords": [
"content-extraction",
"crawling",
"nlp",
"scraping",
"trafilatura"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/gorango/napi-rs-trafilatura.git"
},
"files": [
"lib"
],
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "napi build --platform --release --esm --output-dir lib",
"test": "node --test lib/index.test.js",
"bump": "npm version patch --no-git-tag-version",
"postversion": "npx napi create-npm-dirs && npm run build && npm run prepublishOnly && npm install",
"artifacts": "napi artifacts",
"prepublishOnly": "napi prepublish -t npm"
},
"devDependencies": {
"@napi-rs/cli": "^3.6.2"
},
"optionalDependencies": {
"trafilatura-darwin-arm64": "0.2.0",
"trafilatura-darwin-x64": "0.2.0",
"trafilatura-linux-arm64-gnu": "0.2.0",
"trafilatura-linux-x64-gnu": "0.2.0",
"trafilatura-win32-arm64-msvc": "0.2.0",
"trafilatura-win32-x64-msvc": "0.2.0"
},
"napi": {
"binaryName": "trafilatura",
"targets": [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-apple-darwin",
"aarch64-apple-darwin",
"x86_64-pc-windows-msvc",
"aarch64-pc-windows-msvc"
]
}
}