-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
45
46
47
48
49
50
51
52
{
"name": "ts-typekit",
"version": "1.6.0",
"description": "A Collection of TypeScript Utility Types",
"license": "MIT",
"packageManager": "yarn@4.4.0",
"workspaces": {
"packages": [
"docs",
"source",
"test-d"
]
},
"devDependencies": {
"prettier": "^3.3.3",
"release-it": "^17.6.0",
"tsd": "^0.31.1",
"type-coverage": "^2.29.1",
"typescript": "^5.5.4",
"vitepress": "^1.3.2"
},
"scripts": {
"format": "prettier ./source --write",
"test:tsc": "tsc",
"test:tsd": "tsd",
"test:coverage": "yarn run type-coverage",
"release": "release-it",
"docs": "yarn workspace docs run docs:dev",
"type-coverage": "npx type-coverage"
},
"keywords": [
"typescript",
"ts",
"tsd",
"types",
"utility",
"utility-types"
],
"types": "./index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"files": [
"source",
"index.d.ts"
],
"typeCoverage": {
"atLeast": 99,
"project": "tsconfig.json",
"strict": true
}
}