-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.65 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.65 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
{
"name": "datalegion",
"version": "0.1.2",
"description": "TypeScript client for the Data Legion API",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
},
"import": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/esm/index.js"
}
}
},
"files": [
"dist"
],
"scripts": {
"build": "bun run tsc && bun run tsc -p tsconfig.esm.json && echo '{\"type\":\"module\"}' > dist/esm/package.json",
"lint": "bun run eslint src/",
"lint:fix": "bun run eslint src/ --fix",
"prepublishOnly": "bun run build",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "https://github.com/datalegion-ai/datalegion-node.git"
},
"homepage": "https://www.datalegion.ai/docs",
"bugs": {
"url": "https://github.com/datalegion-ai/datalegion-node/issues"
},
"keywords": [
"datalegion",
"api",
"sdk",
"typescript",
"person-enrichment",
"company-enrichment",
"data-enrichment",
"b2b",
"contact-data"
],
"author": "Data Legion <engineering@datalegion.ai>",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"overrides": {
"flatted": "^3.4.0"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/node": "^25.5.0",
"dotenv": "^17.3.1",
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unused-imports": "^4.4.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.57.1",
"vitest": "^4.1.0"
}
}