-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1 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
{
"name": "@llmcrawl/llmcrawl-js",
"version": "1.0.1",
"description": "Official JavaScript SDK for LLMCrawl - scrape websites, crawl multiple pages, and extract structured data using AI",
"packageManager": "bun@1.2.17",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "vitest",
"build": "tsdown src/index.ts",
"prepublishOnly": "bun run build",
"release": "bumpp"
},
"author": "AIPurrjects",
"license": "MIT",
"bugs": {
"url": "https://github.com/LLMCrawl/llmcrawl-js/issues"
},
"homepage": "https://github.com/LLMCrawl/llmcrawl-js#readme",
"devDependencies": {
"@microsoft/api-extractor": "^7.52.8",
"@types/bun": "^1.2.17",
"bumpp": "^10.2.0",
"tsdown": "^0.12.9",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"dependencies": {
"zod": "^3.25.67"
}
}