-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.8 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.8 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
73
{
"name": "@validkit/sdk",
"version": "1.0.1",
"description": "Official TypeScript/JavaScript SDK for ValidKit Email Verification API - optimized for AI agents",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch",
"dev": "tsup --watch",
"test": "jest --config jest.config.cjs",
"test:watch": "jest --watch --config jest.config.cjs",
"test:coverage": "jest --coverage --config jest.config.cjs",
"lint": "./node_modules/.bin/eslint src/",
"lint:fix": "npx eslint src/ --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"publish:npm": "npm publish --access public"
},
"keywords": [
"email",
"validation",
"verification",
"ai-agents",
"typescript",
"javascript",
"sdk",
"batch-processing",
"langchain",
"autogpt",
"validkit"
],
"author": "ValidKit <developers@validkit.com>",
"license": "MIT",
"homepage": "https://validkit.com",
"repository": {
"type": "git",
"url": "git+https://github.com/ValidKit/validkit-typescript-sdk.git"
},
"bugs": {
"url": "https://github.com/validkit/validkit/issues"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
},
"dependencies": {
"cross-fetch": "^4.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}