-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.99 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
{
"name": "wellmarked",
"version": "1.1.1",
"description": "Official JavaScript/TypeScript SDK for the WellMarked API — convert any URL to clean Markdown.",
"keywords": [
"wellmarked",
"markdown",
"scraping",
"extraction",
"html-to-markdown",
"rag",
"llm",
"pipeline"
],
"homepage": "https://wellmarked.io",
"bugs": {
"url": "https://github.com/WellMarkedAPI/JS-TS-SDK/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WellMarkedAPI/JS-TS-SDK.git"
},
"license": "MIT",
"author": {
"name": "WellMarked",
"email": "support@wellmarked.io",
"url": "https://wellmarked.io"
},
"type": "module",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"src",
"README.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=18.17.0"
},
"scripts": {
"build": "npm run build:clean && npm run build:esm && npm run build:cjs && npm run build:types",
"build:clean": "rimraf dist",
"build:esm": "tsc -p tsconfig.build.json --module esnext --moduleResolution bundler --outDir dist/esm",
"build:cjs": "tsc -p tsconfig.build.json --module commonjs --moduleResolution node --outDir dist/cjs && node scripts/rename-cjs.mjs",
"build:types": "tsc -p tsconfig.build.json --emitDeclarationOnly --declaration --outDir dist/types",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc -p tsconfig.json --noEmit",
"prepublishOnly": "npm run build && npm test"
},
"devDependencies": {
"@types/node": "^25.9.2",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}