-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
117 lines (117 loc) · 2.83 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
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
{
"name": "nome",
"displayName": "NOME3 Language Support",
"description": "This is a language that can create intricate 3DCAD design models for the JIPCAD community",
"version": "0.0.1",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Programming Languages"
],
"main": "./src/extension.js",
"provider": "./src/semantictokenprovider.js",
"publisher": "Aaron Zheng",
"homepage": "https://github.com/JIPCAD/JIPCAD-vs-code",
"repository": {
"type": "git",
"url": "https://github.com/JIPCAD/JIPCAD-vs-code"
},
"bugs": {
"url": "https://github.com/JIPCAD/JIPCAD-vs-code/issues"
},
"activationEvents": [
"onCommand:nome.seeDocumentation",
"onCommand:nome.runFile",
"onCommand:nome.setExecutable"
],
"license": "MIT",
"contributes": {
"configurationDefaults": {
"[nome]": {
"editor.semanticHighlighting.enabled": true
}
},
"configuration": {
"type": "object",
"title": "NOME Extension Configuration",
"properties": {
"nome.executable": {
"type": "string",
"description": "Location of NOME executable"
}
}
},
"commands": [
{
"command": "nome.seeDocumentation",
"title": "NOME: Open NOME Documentation"
},
{
"command": "nome.runCode",
"title": "NOME: Run NOME Code"
},
{
"command": "nome.setExecutable",
"title": "NOME: Configure Executable Path"
}
],
"languages": [
{
"id": "nome",
"aliases": [
"NOME",
"nome",
"JIPCAD",
"jipcad"
],
"extensions": [
".nom",
".jipcad"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "nome",
"scopeName": "source.nom",
"path": "./syntaxes/nome.tmLanguage.json"
}
],
"semanticTokenTypes": [
{
"id": "templateType",
"superType": "type",
"description": "A template type."
}
],
"semanticTokenModifiers": [
{
"id": "native",
"description": "Annotates a symbol that is implemented natively"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"dependencies": {
"@types/vscode": "^1.73.1",
"@typescript-eslint/eslint-plugin": "^5.45.1",
"@typescript-eslint/parser": "^5.45.1",
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"eslint": "^8.28.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.9.3",
"@vscode/test-electron": "^2.2.0"
}
}