-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 802 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 802 Bytes
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
{
"name": "incremental-tsc",
"version": "0.9.2",
"description": "Typecheck new typescript files incrementally",
"author": "Joseph Morag",
"license": "MIT",
"prettier": {
"parser": "typescript",
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"bin": {
"incremental-tsc": "./index.js"
},
"type": "module",
"scripts": {
"build": "node_modules/.bin/tsc --build tsconfig.json",
"npm": "yarn build && chmod +x ./index.js && yarn publish"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/node": "^14.11.8",
"@types/node-fetch": "^2.5.7",
"@types/yargs": "^15.0.9"
},
"dependencies": {
"chalk": "^4.1.0",
"node-fetch": "^2.6.1",
"typescript": "^4.0.3",
"yargs": "^16.1.0"
}
}