-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
54
55
56
57
58
59
60
{
"name": "ts2typebox",
"version": "1.6.1",
"description": "Creates TypeBox code from Typescript code",
"main": "dist/src/index.js",
"source": "dist/src/index.js",
"typings": "dist/src/index.d.ts",
"bin": {
"ts-to-typebox": "dist/src/cli/index.js",
"ts2typebox": "dist/src/cli/index.js"
},
"scripts": {
"build": "tsc",
"watch-ts": "tsc -w",
"test": "tsc && node --test --test-reporter spec",
"start": "node dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xddq/ts2typebox.git"
},
"keywords": [
"JSON schema",
"ts2typebox",
"ts-to-typebox",
"typescript",
"typebox",
"ts",
"validation",
"parsing",
"IO",
"cli"
],
"author": "Pierre Dahmani",
"license": "MIT",
"bugs": {
"url": "https://github.com/xddq/ts2typebox/issues"
},
"homepage": "https://github.com/xddq/ts2typebox#readme",
"dependencies": {
"@sinclair/typebox-codegen": "^0.8.6",
"cosmiconfig": "^8.1.3",
"minimist": "^1.2.8",
"prettier": "^2.8.7",
"typescript": "^5.2.2"
},
"devDependencies": {
"@sinclair/typebox": "0.32.31",
"@types/minimist": "1.2.2",
"@types/node": "18.16.0",
"@types/prettier": "2.7.2",
"@types/shelljs": "0.8.12",
"shelljs": "0.8.5",
"tsconfig-paths": "4.1.2"
},
"peerDependencies": {
"@sinclair/typebox": "^0.32.31"
},
"packageManager": "[email protected]"
}