pdftract/pdftract-node/package.json
jedarden 0932cf1fdc feat(sdks): vendor dotnet/java/node SDKs into the monorepo
Consolidate the .NET, Java, and Node SDKs into root-level pdftract-<lang>/
directories (matching the already-tracked pdftract-go/), per the decision to
make the generated SDKs first-class monorepo members rather than separate repos.
Content imported from the standalone ~/pdftract-<lang> repos (build artifacts
excluded). Removes the broken empty-git nested clones that were polluting the
working tree.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-22 07:20:19 -04:00

52 lines
1.1 KiB
JSON

{
"name": "@pdftract/sdk",
"version": "1.0.0",
"description": "PDFtract SDK - PDF extraction and document processing for Node.js",
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.cts",
"default": "./dist/cjs/index.cjs"
}
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest",
"test:conformance": "vitest run test/conformance.test.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"pdf",
"extraction",
"ocr",
"document-processing",
"pdftract"
],
"author": "jedarden",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsup": "^8.0.0",
"vitest": "^1.0.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
]
}