-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 984 Bytes
/
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
{
"name": "tsdev-installer",
"version": "0.0.11",
"description": "The installer for tsdev, a better tsdx",
"scripts": {
"postinstall": "node dist/postinstall.js install",
"preuninstall": "node dist/postinstall.js uninstall",
"build": "esbuild --bundle scripts/postinstall.ts --outdir=dist/ --platform=node --format=cjs",
"prepare": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cryogenicplanet/tsdev.git"
},
"keywords": [
"tsdx",
"typescript",
"boilerplate",
"code-gen",
"esbuild"
],
"author": "Rahul Tarak",
"license": "MIT",
"bugs": {
"url": "https://github.com/cryogenicplanet/tsdev/issues"
},
"homepage": "https://github.com/cryogenicplanet/tsdev#readme",
"dependencies": {
"axios": "^0.24.0",
"decompress": "^4.2.1",
"mkdirp": "^1.0.4"
},
"devDependencies": {
"esbuild": "^0.14.2"
},
"goBinary": {
"name": "tsdev",
"path": "./bin"
}
}