-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
50 lines (50 loc) · 1.02 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
{
"name": "esbuild-node-tsc",
"description": "Build your Typescript Node.js projects using blazing fast esbuild",
"version": "2.0.5",
"repository": {
"type": "git",
"url": "git+https://github.com/a7ul/esbuild-node-tsc.git"
},
"author": "",
"bugs": {
"url": "https://github.com/a7ul/esbuild-node-tsc/issues"
},
"homepage": "https://github.com/a7ul/esbuild-node-tsc#readme",
"main": "./dist/index.js",
"bin": {
"esbuild-node-tsc": "dist/index.js",
"etsc": "dist/index.js"
},
"type": "module",
"license": "MIT",
"scripts": {
"prepare": "tsc",
"build": "tsc"
},
"keywords": [
"esbuild",
"node",
"dev",
"tsnode",
"ts-node",
"tsc",
"typescript"
],
"devDependencies": {
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.19",
"esbuild": "^0.16.14",
"typescript": "^4.9.4"
},
"dependencies": {
"yargs": "^17.6.2"
},
"peerDependencies": {
"esbuild": ">=0.13.0",
"typescript": "*"
},
"prettier": {
"semi": true
}
}