-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.1 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
{
"name": "read-browser-tabs",
"version": "0.0.0-development",
"description": "(macOS only) Get active tab info from running safari or chrome",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": "https://github.com/zardoy/read-browser-tabs.git",
"author": "Vitaly Turovsky <vital2580@icloud.com>",
"license": "MIT",
"scripts": {
"start": "ts-node src/index.ts",
"prepublishOnly": "tsc"
},
"engines": {
"node": ">=10"
},
"files": [
"build"
],
"dependencies": {
"@jxa/run": "^1.3.4"
},
"devDependencies": {
"@jxa/global-type": "^1.3.4",
"@types/node": "^14.14.20",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"eslint": "^7.17.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"keywords": [
"node",
"typescript",
"jxa",
"browser",
"integration",
"browser tabs",
"read tabs",
"get tabs",
"retrieve tabs",
"safari",
"chrome",
"tab info"
]
}