-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
118 lines (118 loc) · 3.08 KB
/
Copy pathpackage.json
File metadata and controls
118 lines (118 loc) · 3.08 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"activationEvents": [
"onLanguage:eo"
],
"author": "Eduardo Fernandes, Anatoliy Baskakov, Roman Nabiullin",
"categories": [
"Programming Languages"
],
"contributes": {
"configuration": {
"properties": {
"languageServerExample.maxNumberOfProblems": {
"default": 100,
"description": "Controls the maximum number of problems produced by the server.",
"scope": "resource",
"type": "number"
},
"languageServerExample.trace.server": {
"default": "off",
"description": "Traces the communication between VS Code and the language server.",
"enum": [
"off",
"messages",
"verbose"
],
"scope": "window",
"type": "string"
}
},
"title": "Configuration",
"type": "object"
},
"grammars": [
{
"language": "eo",
"path": "./out/eo.tmLanguage.json",
"scopeName": "source.eo"
}
],
"languages": [
{
"aliases": [
"EO",
"eo"
],
"configuration": "./language-configuration.json",
"extensions": [
".eo"
],
"icon": {
"dark": "./icons/cactus-128.png",
"light": "./icons/cactus-128.png"
},
"id": "eo"
}
]
},
"dependencies": {
"@vscode/vsce": "^3.6.2",
"eo-lsp-server": "^0.4.0",
"vscode-languageclient": "^9.0.0"
},
"description": "A language extension for the EO Programming Language. Provides syntax highlighting and parsing error checking.",
"devDependencies": {
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^30.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "^24.0.0",
"@types/plist": "^3.0.5",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vscode/test-electron": "^2.1.2",
"babel-jest": "^30.0.0",
"eslint": "^9.0.0",
"eslint-config-eslint": "^13.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^17.23.1",
"jest": "^30.0.0",
"js-yaml": "^4.1.0",
"mocha": "^11.0.0",
"plist": "^3.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.28.0",
"typescript": "^5.0.0"
},
"displayName": "EO",
"engines": {
"node": ">=18.0.0",
"vscode": "^1.63.0"
},
"icon": "icons/cactus-128.png",
"keywords": [
"eo",
"eolang"
],
"license": "SEE LICENSE IN LICENSE.txt",
"main": "./out/extension",
"name": "eo",
"publisher": "eolang",
"repository": {
"type": "git",
"url": "https://github.com/objectionary/eo-vscode"
},
"scripts": {
"compile": "tsc -b",
"end-to-end-test": "npm run compile && node ./out/end-to-end-test/runTest",
"generate-docs": "npx typedoc",
"get-grammar": "sh ./scripts/get-grammar.sh",
"lint": "eslint ./src --ext .ts,.tsx",
"test": "npx jest --coverage",
"vscode:prepublish": "npm run compile",
"watch": "tsc -b -w"
},
"version": "0.0.0"
}