forked from desmosinc/typescript-checks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "@desmos/typescript-checks",
"version": "2.0.3",
"description": "",
"main": "dist/index.js",
"bin": "dist/index.js",
"files": [
"**/*.ts",
"**/*.json",
"dist"
],
"scripts": {
"typecheck": "./dist/index.js tsc tsconfig.json",
"eslint": "./dist/index.js eslint tsconfig.json",
"build": "tsc -p tsconfig.json && chmod +x dist/index.js",
"watch": "tsc -w -p tsconfig.json",
"prepublish": "yarn build",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@octokit/auth-app": "^2.1.2",
"@octokit/rest": "^18.5.3",
"dotenv": "^8.1.0",
"yargs": "^17.0.1"
},
"peerDependencies": {
"eslint": "^7.26.0",
"typescript": "^4.1.3"
},
"devDependencies": {
"@types/eslint": "^7.2.10",
"@types/yargs": "^16.0.2",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"eslint": "^7.26.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "^1.18.2",
"ts-node": "^8.4.1",
"typescript": "^4.1.3"
}
}