-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 811 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 811 Bytes
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
{
"name": "billionverify",
"version": "1.0.1",
"description": "BillionVerify CLI - Email verification from the command line",
"type": "module",
"bin": {
"billionverify": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --format esm",
"dev": "bun run src/index.ts",
"prepublishOnly": "bun run build"
},
"keywords": [
"email",
"verification",
"validation",
"billionverify",
"cli"
],
"author": "BillionVerify",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BillionVerify/billionverify-cli.git"
},
"homepage": "https://billionverify.com",
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"bun-types": "^1.3.10"
}
}