-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.06 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.06 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
{
"name": "tsc-lint",
"description": "Run tsc in parallel on multiple tsconfigs",
"type": "module",
"version": "0.1.9",
"bin": {
"tsc-lint": "./dist/main.js"
},
"files": [
"dist"
],
"license": "MIT",
"author": "Alec Larson",
"repository": {
"type": "git",
"url": "https://github.com/alloc/tsc-lint.git"
},
"prettier": "@alloc/prettier-config",
"scripts": {
"prepublishOnly": "pnpm build",
"dev": "rimraf dist && tsup --sourcemap --watch",
"build": "rimraf dist && tsup",
"lint": "tsc-lint",
"test": "vitest"
},
"devDependencies": {
"@alloc/prettier-config": "^1.0.0",
"@types/debug": "^4.1.12",
"@types/node": "^22.13.1",
"@types/picomatch": "^3.0.2",
"prettier": "^3.4.2",
"radashi": "12.5.0-beta.6d5c035",
"rimraf": "^6.0.1",
"tsc-lint": "link:",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"debug": "^4.4.0",
"ignore": "^7.0.3",
"nanocolors": "^0.2.13",
"picomatch": "^4.0.2",
"tinyglobby": "^0.2.10",
"tsconfck": "^3.1.5"
}
}