forked from gustavopch/tsc-files
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.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.17.10",
"husky": "9.0.11",
"lint-staged": "15.2.11",
"typescript": "5.4.5",
"xo": "0.58.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]+sha512.9df9cf27c91715646c7d675d1c9c8e41f6fce88246f1318c1aa6a1ed1aeb3c4f032fcdf4ba63cc69c4fe6d634279176b5358727d8f2cc1e65b65f43ce2f8bfb0",
"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"
]
}