-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 750 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 750 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
{
"name": "typescript-run",
"version": "0.1.1",
"description": "Run TypeScript files with ease and at a lightning speed of esbuild!",
"main": "src/index.js",
"funding": {
"type": "patreon",
"url": "https://patreon.com/saurabhdaware"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"ts-run": "src/index.js",
"typescript-run": "src/index.js"
},
"keywords": [
"typescript",
"ts-node",
"esbuild"
],
"author": "saurabhdaware",
"repository": {
"type": "git",
"url": "git+https://github.com/saurabhdaware/typescript-run.git"
},
"license": "MIT",
"dependencies": {
"chokidar": "^3.5.2",
"commander": "^8.0.0",
"esbuild": "^0.12.15"
}
}