-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.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
{
"name": "lang-support",
"displayName": "Nexoscript Language Support",
"description": "Language support for Nexoscript, including syntax highlighting and other features.",
"version": "0.0.0",
"publisher": "Nexoscript",
"repository": "https://github.com/Nexoscript/nexoscript",
"icon": "assets/logo.png",
"contributes": {
"languages": [
{
"id": "nexoscript",
"extensions": [
".nexoscript"
],
"aliases": [
"Nexoscript",
"nexoscript"
],
"configuration": "./language-configuration.json"
},
{
"id": "nexoproject",
"extensions": [
".nexoproject"
],
"aliases": [
"Nexoproject",
"nexoproject"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "nexoscript",
"scopeName": "source.nexoscript",
"path": "./syntaxes/nexoscript.tmLanguage.json"
},
{
"language": "nexoproject",
"scopeName": "source.nexoproject",
"path": "./syntaxes/nexoproject.tmLanguage.json"
}
]
},
"configurationDefaults": {
"nexoscript": {
"editor.semanticHighlighting.enabled": true
}
},
"engines": {
"vscode": "^1.74.0"
},
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@stylistic/eslint-plugin": "^2.9.0",
"@types/node": "^20",
"@types/vscode": "^1.73.0",
"eslint": "^9.13.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}