-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
57 lines (57 loc) · 1.08 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
{
"name": "shorten-repo-url",
"version": "5.2.1",
"description": "Shorten GitHub URLs like GitHub shortens Issues and Commit URLs",
"keywords": [
"commit",
"file",
"github",
"gitlab",
"issue",
"link",
"links",
"ref",
"reference",
"shorter",
"url"
],
"repository": "refined-github/shorten-repo-url",
"funding": "https://github.com/sponsors/fregante",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (https://fregante.com)",
"type": "module",
"exports": "./index.js",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"test": "xo && tsd && vitest run"
},
"xo": {
"parser": "@typescript-eslint/parser",
"globals": [
"document"
],
"rules": {
"unicorn/better-regex": "off",
"unicorn/prefer-module": "off",
"complexity": "off"
}
},
"dependencies": {
"github-reserved-names": "^2.0.5"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^5.0.0",
"happy-dom": "^15.0.0",
"tsd": "^0.31.1",
"vitest": "^2.0.5",
"xo": "^0.58.0"
},
"engines": {
"node": ">=20.10"
}
}