-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.93 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "zodschema-generator",
"displayName": "Zod schema generator",
"description": "Display live preview of generated Zod schema from typescript source code",
"version": "1.0.0",
"publisher": "psulek-solo",
"license": "MIT",
"author": "Peter Šulek",
"icon": "logo.png",
"repository": {
"type": "git",
"url": "https://github.com/psulek/vscode-zodschema-generator"
},
"bugs": {
"url": "https://github.com/psulek/vscode-zodschema-generator/issues"
},
"homepage": "https://github.com/psulek/vscode-zodschema-generator/blob/main/README.md",
"engines": {
"vscode": "^1.79.0"
},
"keywords": [
"typescript",
"zod",
"ts-to-zod",
"ts2zod",
"schema",
"generator",
"preview"
],
"categories": [
"Visualization",
"Programming Languages",
"Other"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "zodschemagenerator.genSchema",
"title": "Generate Zod schema from Typescript"
}
],
"menus": {
"commandPalette": [
{
"command": "zodschemagenerator.genSchema",
"group": "navigation"
}
]
}
},
"scripts": {
"postinstall": "patch-package",
"create-patch": "npx patch-package ts-to-zod",
"lint": "eslint src --ext ts",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"compile": "npm run esbuild-base -- --sourcemap",
"compile-prod": "npm run esbuild-base -- --minify",
"watch": "npm run esbuild-base -- --sourcemap --watch",
"watch-tests": "npm run esbuild-test -- --sourcemap --watch",
"package": "vsce package",
"publish": "npx vsce publish"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/glob": "^8.1.0",
"@types/lodash.debounce": "^4.0.7",
"@types/lodash.throttle": "^4.1.7",
"@types/markdown-it": "12.2.3",
"@types/mocha": "^10.0.1",
"@types/node": "20.2.5",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vscode/test-electron": "~2.3.3",
"@vscode/vsce": "^2.20.0",
"chalk": "^4.0.0",
"cpx": "^1.5.0",
"crlf-normalize": "1.0.19",
"esbuild": "^0.18.11",
"eslint": "^8.41.0",
"fs-extra": "^6.0.0",
"glob": "^8.1.0",
"glob-all": "3.3.1",
"mocha": "^10.2.0",
"patch-package": "^7.0.0",
"rimraf": "^5.0.1"
},
"dependencies": {
"ts-to-zod": "^3.1.3",
"typescript": "^5.1.3"
}
}