-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "types-util",
"version": "1.0.0",
"private": false,
"license": "MIT",
"description": "A package with some typescript utility types.",
"keywords": [
"typescript",
"types",
"util"
],
"homepage": "https://github.com/CyberHD1811/util-types",
"repository": {
"type": "git",
"url": "https://github.com/CyberHD1811/util-types"
},
"bugs": {
"url": "https://github.com/CyberHD1811/util-types/issues"
},
"author": {
"name": "CyberHD1811",
"url": "https://github.com/CyberHD1811"
},
"dependencies": {
"@types/node": "20.10.7"
},
"prettier": {
"arrowParens": "always",
"embeddedLanguageFormatting": "auto",
"endOfLine": "lf",
"overrides": [],
"parser": "",
"plugins": [],
"printWidth": 70,
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all",
"useTabs": false
}
}