-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.83 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.83 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "tsc-output-format",
"version": "0.0.0",
"description": "Format Typescript compiler (tsc) diagnostic output into JSON, GHA Annotations, and more",
"author": "codeismyid",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/codeismyid/tsc-output-format.git"
},
"homepage": "https://github.com/codeismyid/tsc-output-format#readme",
"bugs": {
"url": "https://github.com/codeismyid/tsc-output-format/issues"
},
"files": ["dist"],
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"tsc",
"tsc-output",
"tsc-output-parser",
"tsc-output-format",
"typescript"
],
"scripts": {
"prepare": "bunx husky || true",
"ci": "bun install --frozen-lockfile",
"clean": "bun clean:deps && bun clean:docs && bun clean:dist && bun clean:codecov",
"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 --coverage",
"check:type": "bunx tsc && bunx type-coverage",
"dist": "bun clean:dist && bun ./scripts/dist.ts && bunx publint",
"fix": "bun fix:format && bun fix:lint",
"fix:format": "bunx biome check --linter-enabled=false --fix",
"fix:lint": "bunx biome lint --fix",
"reinstall": "bun clean:deps && bun install",
"release": "bun ./scripts/release.ts"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "19.8.0",
"@commitlint/types": "19.8.0",
"@types/bun": "latest",
"chalk": "5.4.1",
"commitlint-format": "1.0.2",
"conventional-changelog-conventionalcommits": "8.0.0",
"esbuild": "0.25.2",
"husky": "9.1.7",
"publint": "0.3.10",
"semantic-release": "24.2.3",
"tsc-alias": "1.8.13",
"type-coverage": "2.29.7",
"typescript": "5.8.3"
},
"module": "./dist/src/index.mjs",
"main": "./dist/src/index.cjs",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.mjs",
"require": "./dist/src/index.cjs"
},
"./*": {
"types": "./dist/src/*/index.d.ts",
"import": "./dist/src/*/index.mjs",
"require": "./dist/src/*/index.cjs"
},
"./package.json": "./package.json"
},
"bin": {
"tsc-output-format": "./dist/bin/tsc-output-format.cjs"
},
"devEngines": {
"runtime": {
"name": "bun",
"onFail": "warn"
},
"packageManager": {
"name": "bun",
"onFail": "warn"
}
},
"typeCoverage": {
"atLeast": 100,
"showRelativePath": true,
"strict": true,
"ignoreAsAssertion": true,
"ignoreEmptyType": true
},
"trustedDependencies": ["@biomejs/biome"]
}