-
-
Notifications
You must be signed in to change notification settings - Fork 547
/
package.json
75 lines (75 loc) · 1.57 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "type-fest",
"version": "4.27.0",
"description": "A collection of essential TypeScript types",
"license": "(MIT OR CC0-1.0)",
"repository": "sindresorhus/type-fest",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"types": "./index.d.ts",
"sideEffects": false,
"engines": {
"node": ">=16"
},
"scripts": {
"test:source-files-extension": "node script/test/source-files-extension.js",
"test:tsc": "tsc",
"test:tsd": "tsd",
"test:xo": "xo",
"test": "run-p test:*"
},
"files": [
"index.d.ts",
"source",
"license-mit",
"license-cc0"
],
"keywords": [
"typescript",
"ts",
"types",
"utility",
"util",
"utilities",
"omit",
"merge",
"json",
"generics"
],
"devDependencies": {
"expect-type": "^1.1.0",
"npm-run-all2": "^7.0.1",
"tsd": "^0.31.2",
"typescript": "~5.6.3",
"xo": "^0.59.3"
},
"xo": {
"rules": {
"@typescript-eslint/no-extraneous-class": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/naming-convention": "off",
"import/extensions": "off",
"@typescript-eslint/no-redeclare": "off",
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/no-unsafe-argument": "off",
"n/file-extension-in-import": "off",
"object-curly-newline": [
"error",
{
"multiline": true,
"consistent": true
}
]
}
},
"tsd": {
"compilerOptions": {
"noUnusedLocals": false
}
}
}