-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.13 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
{
"private": true,
"name": "tsschema",
"displayName": "JSON Typescript Virtual Schema",
"description": "Validate JSON with a Typespcript type inside the workspace",
"version": "1.4.0",
"publisher": "KurtGokhan",
"homepage": "https://github.com/KurtGokhan/tsschema",
"bugs": "https://github.com/KurtGokhan/tsschema/issues",
"repository": {
"type": "git",
"url": "https://github.com/KurtGokhan/tsschema.git"
},
"keywords": [
"json",
"typescript",
"vscode",
"schema"
],
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onFileSystem:tsschema"
],
"main": "./dist/extension.js",
"contributes": {},
"scripts": {
"vscode:prepublish": "npm run build",
"start": "vite build --watch --mode development --minify false",
"build": "vite build",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/node": "20.x",
"@types/vscode": "^1.62.0",
"@vscode/vsce": "^2.28.0",
"vite": "^5.3.1"
},
"dependencies": {
"typescript": "5.4.5",
"typescript-json-schema": "0.64.0"
}
}