-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.38 KB
/
package.json
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "email-finder",
"displayName": "email finder",
"description": "Provides email domain search, verification, and count functionalities using the Tomba.io API. Easily integrate email data into your VSCode environment.",
"version": "0.0.1",
"engines": {
"vscode": "^1.87.0"
},
"categories": [
"Other"
],
"keywords": [
"email",
"finder",
"API",
"Verify",
"Domain"
],
"publisher": "tomba-io",
"icon": "assets/tomba.png",
"repository": "https://github.com/tomba-io/email-finder-vs-code-extension",
"author": {
"email": "b.mohamed@tomba.io",
"name": "Mohamed benrebia",
"url": "https://github.com/tomba-io"
},
"license": "MIT",
"activationEvents": [
"onCommand",
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"configuration": [
{
"title": "Tomba.io API KEY",
"properties": {
"tomba.apiKey": {
"type": "string",
"default": "",
"description": "API key for accessing Tomba.io services"
}
}
},
{
"title": "Tomba.io API SECRET",
"properties": {
"tomba.apiSecret": {
"type": "string",
"default": "",
"description": "API Secret for accessing Tomba.io services"
}
}
}
],
"commands": [
{
"command": "extension.findEmailDomain",
"title": "Tomba: Find Email Domain Info"
},
{
"command": "extension.verifyEmail",
"title": "Tomba: Verify Email Address"
},
{
"command": "extension.emailCount",
"title": "Tomba: Count Emails on Domain"
}
]
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"build": "vsce package -o tomba-io.email-finder-$npm_package_version.vsix --no-yarn",
"test": "vscode-test"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@types/vscode": "^1.87.0",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"@vscode/test-cli": "^0.0.6",
"@vscode/test-electron": "^2.3.9",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
},
"dependencies": {
"tomba": "^1.0.2"
}
}