-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.2 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
51
52
53
{
"name": "json2typebox-cli",
"version": "0.1.0",
"description": "Json to typebox schemas cli.",
"type": "module",
"files": [
"dist"
],
"bin": {
"json2typebox": "./index.js",
"jtt": "./index.js"
},
"scripts": {
"start": "node dist/index.mjs",
"dev": "unbuild --stub",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"release": "dotenv release-it"
},
"keywords": [
"json2typebox",
"json2typebox-cli",
"cli"
],
"author": {
"name": "hacxy",
"email": "[email protected]",
"url": "https://github.com/hacxy"
},
"homepage": "https://github.com/hacxy/json2typebox-cli#readme",
"bugs": {
"url": "https://github.com/hacxy/json2typebox-cli/issues"
},
"license": "MIT",
"dependencies": {
"cac": "^6.7.14",
"clipboardy": "^4.0.0",
"json2typebox": "^0.0.3",
"log-symbols": "^7.0.0"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@release-it/conventional-changelog": "^9.0.1",
"@types/node": "^20.17.0",
"dotenv-cli": "^7.4.2",
"eslint": "^8.57.0",
"globals": "^15.0.0",
"release-it": "^17.10.0",
"typescript": "^5.4.4",
"typescript-eslint": "^7.7.1",
"unbuild": "^2.0.0"
}
}