-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.74 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.74 KB
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
{
"name": "hyperjump-json-schema",
"version": "0.1.0",
"description": "VSCode extension for JSON Schema",
"main": "./out/extension.js",
"scripts": {
"lint": "eslint src",
"type-check": "tsc --noEmit",
"vscode:prepublish": "npm run build-client -- --minify && npm run build-server -- --minify",
"build": "npm run build-client -- --sourcemap && npm run build-server -- --sourcemap",
"build-client": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build-server": "esbuild ../language-server/src/server.js --bundle --external:fsevents --main-fields=module,main --outfile=out/server.js --external:vscode --format=cjs --platform=node",
"package": "vsce package --out=dist",
"publish": "vsce publish"
},
"author": "Jason Desrosiers <jdesrosi@gmail.com>",
"license": "MIT",
"repository": "github:hyperjump-io/json-schema-language-tools",
"devDependencies": {
"@types/vscode": "*",
"@vscode/vsce": "*",
"esbuild": "*"
},
"dependencies": {
"vscode-languageclient": "^9.0.0"
},
"engines": {
"vscode": "^1.75.0"
},
"activationEvents": [
"onLanguage:json"
],
"contributes": {
"configuration": {
"title": "Configuration for JSON Schema Language Server",
"properties": {
"jsonSchemaLanguageServer.defaultDialect": {
"type": "string",
"description": "The default JSON Schema dialect to use if none is specified in the schema document"
},
"jsonSchemaLanguageServer.schemaFilePatterns": {
"type": "array",
"description": "The glob pattern for identifying JSON Schema files.",
"default": ["**/*.schema.json", "**/schema.json"]
}
}
}
}
}