-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
69 lines (69 loc) · 1.57 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
{
"name": "ros",
"displayName": "ros",
"description": "ros language support",
"version": "0.0.0",
"publisher": "ipa-nhg",
"repository": {
"type": "git",
"url": "https://github.com/ipa-nhg/vscode-rostooling"
},
"engines": {
"vscode": "^1.49.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:ros"
],
"main": "out/extension.js",
"contributes": {
"languages": [
{
"id": "ros",
"aliases": [
"ros"
],
"extensions": [
".ros"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "ros",
"scopeName": "source.ros",
"path": "./syntaxes/ros.tmLanguage.json"
}
]
},
"scripts": {
"prepublish": "tsc -p .",
"compile": "tsc -p .",
"watch": "tsc -w -p .",
"update-vscode": "node ./node_modules/vscode/bin/install",
"build-viewer": "webpack --mode=production --config ./src/urdf/webpack.config.js",
"antlr4ts": "antlr4ts -visitor src/parser/DebugInternalroscomponents.g",
"build": "tsc -p ."
},
"devDependencies": {
"@types/vscode": "^1.49.0",
"ts-loader": "^8.0.4",
"typescript": "^4.5.5",
"vscode": "^1.1.37",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@types/three": "^0.137.0",
"antlr4ts": "^0.5.0-alpha.4",
"assert": "^2.0.0",
"grunt-cli": "^1.4.3",
"resolve-cwd": "^3.0.0",
"three": "latest",
"util": "^0.12.4",
"vscode-languageclient": "^7.0.0",
"webpack": "^5.76.1"
}
}