-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 921 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
41
42
43
44
45
46
47
48
49
{
"name": "supports-hyperlinks",
"version": "3.2.0",
"description": "Detect whether a terminal supports hyperlinks",
"license": "MIT",
"repository": "chalk/supports-hyperlinks",
"funding": "https://github.com/chalk/supports-hyperlinks?sponsor=1",
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=14.18"
},
"scripts": {
"//test": "xo && ava && tsc",
"test": "ava"
},
"files": [
"index.js",
"index.d.ts",
"browser.js"
],
"browser": "browser.js",
"keywords": [
"link",
"terminal",
"hyperlink",
"cli",
"detect",
"check",
"ansi",
"escapes",
"console"
],
"dependencies": {
"has-flag": "^4.0.0",
"supports-color": "^7.0.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.3",
"@types/supports-color": "^8.1.1",
"ava": "^3.2.0",
"codecov": "^3.5.0",
"typescript": "^4.9.5",
"xo": "^0.53.0"
}
}