-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.73 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
{
"name": "centroid-gcode-language",
"displayName": "G-Code Language Support (Centroid)",
"description": "Language support (highlighting, hovers) for GCode",
"bugs": {
"url": "https://github.com/dberlin/vscode-centroid-gcode/issues"
},
"homepage": "https://github.com/dberlin/vscode-centroid-gcode",
"repository": {
"type": "git",
"url": "https://github.com/dberlin/vscode-centroid-gcode.git"
},
"publisher": "DanielBerlin",
"license": "Apache-2.0",
"version": "0.2.0",
"engines": {
"vscode": "^1.31.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "centroid-gcode",
"aliases": [
"Centroid gcode",
"gcode",
"GCODE",
"nc",
"syntax",
"highlighter",
"language",
"centroid-gcode"
],
"extensions": [
".nc",
".gcode",
".tap",
".cls",
".apt",
".mpt",
".fnc",
".gc",
".dnc",
".cnc",
".ncf",
".ncc",
".maz",
".hnc",
".knc",
".g00",
".mac",
".hom"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "centroid-gcode",
"scopeName": "source.centroidgcode",
"path": "./syntaxes/centroid-gcode.tmLanguage.json"
}
]
},
"activationEvents": [
"*"
],
"main": "./dist/extension.js",
"scripts": {
"convert-yaml": "ts-node src/scripts/yaml2expandedjs.ts yaml/original_help_text.yaml > src/json/help_text.json",
"vscode:prepublish": "webpack --mode production",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run test-compile && node ./node_modules/vscode/bin/test",
"compile": "npm run convert-yaml && npm run antlr && webpack --mode none",
"antlr": "antlr4ts -visitor -listener src/*.g4",
"watch": "webpack --mode none --watch",
"test-compile": "npm run antlr && tsc -p ./",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"devDependencies": {
"@types/js-yaml": "^3.12.1",
"@types/jsdom": "^12.2.4",
"@types/mocha": "^5.2.7",
"@types/node": "^10.14.16",
"antlr4ts-cli": "^0.5.0-alpha.3",
"js-yaml": "^3.13.1",
"jsdom": "^14.1.0",
"mocha": "^6.2.0",
"ts-loader": "^5.4.5",
"tslint": "^5.19.0",
"typemoq": "^2.1.0",
"typescript": "^3.6.2",
"vscode": "^1.1.36",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.7"
},
"dependencies": {
"antlr4ts": "^0.5.0-alpha.3",
"node-interval-tree": "^1.3.3",
"tiny-trie": "^0.2.6"
}
}