-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "@selectel/ts-check",
"version": "1.0.0",
"description": "CLI utility for checking types using TypeScript server",
"repository": "selectel/ts-check",
"license": "MIT",
"scripts": {
"lint:eslint": "eslint --config eslint.config.mjs lib/",
"lint:prettier": "prettier --config ./.prettierrc -c lib/",
"lint": "npm run lint:prettier && npm run lint:eslint",
"test": "cd ./test && ./run",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepublishOnly": "npm run lint && npm run build && npm run test"
},
"type": "commonjs",
"main": "./dist/public.js",
"types": "./dist/public.d.ts",
"files": [
"./bin",
"./dist",
"./README.md",
"./LICENSE"
],
"bin": {
"ts-check": "./bin/ts-check"
},
"engines": {
"node": ">=18"
},
"peerDependencies": {
"typescript": ">=5"
},
"dependencies": {
"colors": "1.4.0",
"rxjs": "^6.0.0 || ^7.0.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/node": "^22.9.0",
"@types/yargs": "^17.0.33",
"codeclimate-types": "^0.3.1",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.14.0"
}
}