-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.19 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.19 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
{
"name": "typegap",
"version": "0.1.0",
"description": "TypeScript type coverage auditor — find the holes without compiling",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"bin": {
"typegap": "./dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE",
"SECURITY.md",
"CHANGELOG.md",
"CONTRIBUTING.md"
],
"scripts": {
"build": "tsc && chmod +x dist/cli.js",
"dev": "tsx src/cli.ts",
"check": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"format": "prettier --write src",
"validate": "bash scripts/validate.sh",
"test": "vitest run --coverage",
"test:watch": "vitest",
"audit:all": "npm audit",
"audit:prod": "npm audit --omit=dev",
"prepublishOnly": "npm run build",
"release:check": "npm run audit:all && npm run audit:prod && npm run check && npm run lint && npm test && npm run smoke && npm run package:smoke",
"package:smoke": "npm run build && node scripts/package-smoke.mjs",
"smoke": "npm run build && node dist/cli.js --help && node dist/cli.js fixtures --format text"
},
"keywords": [
"typescript",
"type-coverage",
"static-analysis",
"any-detection",
"audit",
"cli"
],
"author": "Roger Chappel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rogerchappel/typegap.git"
},
"bugs": {
"url": "https://github.com/rogerchappel/typegap/issues"
},
"homepage": "https://github.com/rogerchappel/typegap#readme",
"engines": {
"node": "^20.19.0 || >=22.0.0"
},
"dependencies": {
"@typescript-eslint/typescript-estree": "^8.0.0",
"commander": "^12.0.0",
"glob": "^13.0.6",
"picocolors": "^1.0.0"
},
"overrides": {
"glob": "$glob",
"brace-expansion": "5.0.9",
"nanoid": "3.3.18"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^25.9.1",
"@vitest/coverage-v8": "^3.2.7",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.63.0",
"vitest": "^3.2.7"
}
}