-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1 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
{
"name": "@theewave/json-to-ts-cli",
"version": "1.0.0",
"description": "a package that converts json data to typescript interfaces",
"main": "build/index.js",
"type": "module",
"scripts": {
"build": "rm -rf ./build && tsc",
"start": "npm run build && node build/index.js",
"start:dev": "ts-node --esm ./src/index.ts"
},
"bin": {
"jtsc": "build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EgbedokunOlayinka/json-to-ts-cli.git"
},
"keywords": [
"json",
"ts",
"json-to-ts"
],
"author": "Egbedokun Olayinka",
"license": "ISC",
"bugs": {
"url": "https://github.com/EgbedokunOlayinka/json-to-ts-cli/issues"
},
"homepage": "https://github.com/EgbedokunOlayinka/json-to-ts-cli#readme",
"dependencies": {
"chalk": "^5.2.0",
"inquirer": "^9.2.7",
"json-to-ts": "^1.7.0"
},
"devDependencies": {
"@types/node": "^20.3.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}