-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 906 Bytes
/
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
{
"name": "electron-selected-text",
"version": "1.1.2",
"description": "a utility to get selected text for Electron apps",
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aabuhijleh/electron-selected-text.git"
},
"keywords": [
"electron",
"node",
"selected text",
"utility"
],
"author": {
"name": "Abdurrahman Abu-Hijleh",
"email": "aabuhijleh@asaltech.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/aabuhijleh/electron-selected-text/issues"
},
"homepage": "https://github.com/aabuhijleh/electron-selected-text#readme",
"devDependencies": {
"@types/node": "^14.14.10",
"electron": "^11.0.3",
"typescript": "^4.1.2"
},
"dependencies": {
"robotjs": "^0.6.0"
}
}