-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "open-in-browser",
"version": "0.1.2",
"description": "Simple CLI tool using react-dev-tool's open in browser to open any URL in the computers default browser. If the page is already open, activate the tab instead of creating a new window.",
"bin": {
"open-in-browser": "bin/open.js"
},
"files": [
"bin/"
],
"scripts": {
"test": "bin/open.js -n example.com",
"start": "bin/open.js example.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Grynn/open-in-browser.git"
},
"keywords": [
"browser",
"cli",
"util"
],
"type": "module",
"author": "Vishal Doshi <[email protected]>",
"homepage": "https://github.com/Grynn/open-in-browser",
"license": "ISC",
"engineStrict": true,
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"chalk": "^5.3",
"minimist": "^1.2",
"react-dev-utils": "^12"
},
"devDependencies": {
"eslint": "^8",
"eslint-config-prettier": "^9",
"eslint-plugin-prettier": "^5",
"np": "^9",
"prettier": "^3"
}
}