-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
85 lines (85 loc) · 2.76 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
{
"name": "amis",
"description": "amis json intelligense",
"author": "ssddi456",
"license": "MIT",
"version": "0.0.8",
"repository": {
"type": "git",
"url": "https://github.com/ssddi456/amis"
},
"publisher": "ssddi456",
"categories": [],
"keywords": [
"amis amislike"
],
"engines": {
"vscode": "^1.43.0"
},
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:json"
],
"main": "./client/out/extension.js",
"contributes": {
"configuration": {
"type": "object",
"title": "Amis Configures",
"properties": {
"amisLanguageServer.schema.map": {
"scope": "resource",
"type": "array",
"default": [
{
"label": "amis",
"schema": "https://fex-team.github.io/amis-editor-demo/schema.json",
"isAmisStyleSchema": true
}
],
"items": {
"type": "object",
"properties": {
"label": {
"type": "string",
"description": "the label comment of scheme hint"
},
"schema": {
"type": "string",
"description": "the schema definition of the schema"
},
"isAmisStyleSchema": {
"type": "boolean",
"description": "should apply amis schema special rule"
}
}
},
"description": "Controls label and resource map of schemas"
}
}
},
"commands": [
{
"command": "amis.reloadAll",
"title": "reload amis language server"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/mocha": "^8.0.3",
"@types/node": "^12.12.0",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"mocha": "^8.1.1"
}
}