forked from CatQOh/vscode-erabasic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
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
{
"name": "erabasic-emee",
"displayName": "EraBasic-EM+EE",
"description": "Language Support for EraBasic and EM+EE",
"license": "MIT",
"version": "0.7.0",
"publisher": "deletedenter",
"bugs": {
"url": "https://discord.gg/p5rb5uK"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CatQOh/vscode-erabasic.git"
},
"engines": {
"vscode": "^1.67.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:erabasic"
],
"main": "./out/extension",
"scripts": {
"build": "vsce package --baseContentUrl . --baseImagesUrl https://raw.githubusercontent.com/CatQOh/vscode-erabasic/master --out erabasic-latest.vsix",
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./"
},
"contributes": {
"languages": [
{
"id": "erabasic",
"aliases": [
"EraBasic",
"erabasic"
],
"extensions": [
".erb",
".erh",
".erd"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "erabasic",
"scopeName": "source.erabasic",
"path": "./syntaxes/erabasic.tmLanguage.json"
}
],
"snippets": [
{
"language": "erabasic",
"path": "./snippets/erabasic.json"
}
],
"configuration": [
{
"title": "erabasic",
"properties": {
"erabasic.completionWorkspaceSymbols": {
"default": false,
"type": "boolean",
"description": "%configuration.completionWorkspaceSymbols.description%"
},
"erabasic.completionWorkspaceByMultiProcess": {
"default": false,
"type": "boolean",
"description": "%configuration.completionWorkspaceByMultiProcess.description%"
}
}
}
]
},
"dependencies": {
"fs-extra": "^10.1.0",
"iconv-lite": "^0.4.24"
},
"devDependencies": {
"@types/node": "^12.12.0",
"@types/vscode": "^1.34.0",
"tslint": "^5.19.0",
"typescript": "^3.8.3"
}
}