-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.09 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
{
"name": "@the-minimal/types",
"type": "module",
"version": "0.6.0",
"license": "MIT",
"author": "Miroslav Vršecký <yamiteru@icloud.com>",
"description": "Minimal collection of TypeScript utility types",
"types": "index.d.ts",
"files": [
"index.d.ts"
],
"repository": {
"type": "git",
"url": "https://github.com/the-minimal/types.git",
"directory": "src"
},
"keywords": [
"types",
"utility-types",
"typescript-types",
"typescript"
],
"homepage": "https://github.com/the-minimal/types",
"bugs": {
"url": "https://github.com/the-minimal/types/issues"
},
"scripts": {
"prepublishOnly": "bun run check",
"release": "release-it",
"test": "vitest run --typecheck",
"test:coverage": "vitest run --coverage",
"check": "bunx @biomejs/biome check --apply ./"
},
"devDependencies": {
"@biomejs/biome": "1.7.0",
"@types/bun": "latest",
"release-it": "17.2.0",
"type-testing": "0.2.0",
"vitest": "1.5.0"
},
"peerDependencies": {
"typescript": "5.4.5"
},
"publishConfig": {
"access": "public"
}
}