-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.44 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.44 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
{
"name": "edgeparse",
"version": "0.2.3",
"description": "High-performance PDF extraction — Rust engine, Node.js interface",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"edgeparse": "dist/cli.js"
},
"files": [
"dist/",
"npm/",
"README.md"
],
"optionalDependencies": {
"edgeparse-darwin-arm64": "0.2.3",
"edgeparse-darwin-x64": "0.2.3",
"edgeparse-linux-arm64-gnu": "0.2.3",
"edgeparse-linux-x64-gnu": "0.2.3",
"edgeparse-win32-x64-msvc": "0.2.3"
},
"engines": {
"node": ">=18"
},
"license": "Apache-2.0",
"homepage": "https://www.edgeparse.com",
"repository": {
"type": "git",
"url": "git+https://github.com/raphaelmansuy/edgeparse.git",
"directory": "sdks/node"
},
"keywords": [
"pdf",
"extraction",
"markdown",
"json",
"rag",
"llm",
"rust"
],
"scripts": {
"build:native": "cargo build --manifest-path ../../crates/edgeparse-node/Cargo.toml --release",
"build:ts": "npx tsup src/index.ts src/cli.ts --format cjs,esm --dts",
"build": "npm run build:native && npm run build:ts",
"test": "npx vitest run"
},
"devDependencies": {
"@types/node": "^25.5.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
}
}