forked from gustavopch/tsc-files
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@jonasgeiler/tsc-files",
"version": "2.3.1",
"description": "A tiny tool to run tsc on specific files without ignoring tsconfig.json",
"homepage": "https://github.com/jonasgeiler/tsc-files#readme",
"bugs": "https://github.com/jonasgeiler/tsc-files/issues",
"license": "MIT",
"author": "Jonas Geiler <[email protected]> (https://jonasgeiler.com)",
"repository": "github:jonasgeiler/tsc-files",
"scripts": {
"lint": "xo",
"format": "xo --fix",
"check": "tsc",
"self-check": "node ./cli.js cli.js",
"prepare": "husky || true"
},
"devDependencies": {
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/node": "20.12.14",
"husky": "9.0.11",
"lint-staged": "15.2.10",
"typescript": "5.4.5",
"xo": "0.58.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]+sha512.7c2ea089e1a6af306409c4fc8c4f0897bdac32b772016196c469d9428f1fe2d5a21daf8ad6512762654ac645b5d9136bb210ec9a00afa8dbc4677843ba362ecd",
"type": "module",
"bin": "./cli.js",
"exports": {
"./package.json": "./package.json"
},
"files": [
"./cli.js"
],
"xo": {
"prettier": true,
"rules": {
"no-new-func": "off",
"dot-notation": "off"
}
},
"lint-staged": {
"*.{js,mjs,cjs,jsx,ts,mts,cts,tsx}": [
"xo",
"node ./cli.js"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"keywords": [
"tsc-files",
"tsc",
"typescript",
"check",
"type-check",
"compile",
"tsconfig",
"lint-staged"
]
}