-
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.72 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.72 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": "@diffbot/typescript",
"version": "0.2.0",
"description": "TypeScript client library for Diffbot APIs",
"type": "module",
"packageManager": "pnpm@10.33.0",
"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"
},
"./node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsup",
"prepublishOnly": "pnpm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:live": "vitest run --config vitest.live.config.ts",
"test:coverage": "vitest run --coverage --coverage.include='src/**'",
"typecheck": "tsc --noEmit",
"postbuild": "node scripts/assert-no-node-builtins.mjs"
},
"keywords": [
"diffbot",
"knowledge-graph",
"web-scraping",
"extract",
"crawler",
"nlp",
"llm",
"api-client"
],
"author": "Diffbot",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/diffbot/diffbot-typescript.git"
},
"bugs": {
"url": "https://github.com/diffbot/diffbot-typescript/issues"
},
"homepage": "https://github.com/diffbot/diffbot-typescript#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@vitest/coverage-v8": "^3.2.6",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.1"
}
}