-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.31 KB
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
76
77
78
79
80
81
{
"name": "typelab",
"description": "A lab of reusable utility types for everyday TypeScript code.",
"version": "0.0.0",
"author": "codeismyid",
"repository": {
"type": "git",
"url": "git+https://github.com/codeismyid/typelab.git"
},
"homepage": "https://github.com/codeismyid/typelab#readme",
"bugs": {
"url": "https://github.com/codeismyid/typelab/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"typescript",
"ts",
"utility-types",
"ts-utility-types",
"type-utilities",
"type-safety",
"advanced-types",
"type-helpers",
"type-level",
"typescript-utils"
],
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts"
},
"./*": {
"types": "./dist/lib/*/index.d.ts"
}
},
"scripts": {
"prepare": "bunx husky || true",
"ci": "bun install --frozen-lockfile",
"clean": "bun clean:deps && bun clean:docs",
"clean:deps": "rm -rf node_modules && rm -f bun.lockb && rm -f bun.lock",
"clean:dist": "rm -rf dist",
"check": "bun check:type && bun check:spec && bun check:format && bun check:lint",
"check:format": "bunx biome check --linter-enabled=false",
"check:lint": "bunx biome lint",
"check:spec": "bun test",
"check:type": "bunx tsc",
"dist": "bun clean:dist && bunx tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json && bunx publint",
"docs": "bunx typedoc",
"fix": "bun fix:format && bun fix:lint",
"fix:format": "bunx biome check --linter-enabled=false --fix",
"fix:lint": "bunx biome lint --fix --diagnostic-level=warn",
"reinstall": "bun clean:deps && bun install",
"release": "bun ./scripts/release.ts"
},
"dependencies": {},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@commitlint/cli": "20.5.3",
"@commitlint/types": "20.5.0",
"@types/bun": "latest",
"ansis": "4.2.0",
"commitlint-format": "1.1.0",
"conventional-changelog-conventionalcommits": "9.3.1",
"husky": "9.1.7",
"publint": "0.3.18",
"semantic-release": "25.0.3",
"tsc-alias": "1.8.17",
"tsc-output-format": "1.2.0",
"typedoc": "0.28.19",
"typedoc-plugin-markdown": "4.11.0",
"types-testing": "1.0.2",
"typescript": "latest"
}
}