-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.4 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
{
"name": "@origamidl/vscode",
"displayName": "Origami",
"description": "Origami language support and embedded runtime",
"version": "0.0.1",
"publisher": "padarom",
"main": "out/extension",
"engines": {
"vscode": "^1.27.0"
},
"activationEvents": [
"onLanguage:origami",
"onCommand:origami-vscode.openPreview"
],
"categories": [
"Languages"
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "babel src --out-dir out",
"watch": "babel src --watch --out-dir out"
},
"contributes": {
"commands": [
{
"command": "origami-vscode.openPreview",
"title": "Origami Definition Language: Open Preview",
"category": "Origami"
}
],
"languages": [
{
"id": "origami",
"aliases": [
"Origami Definition Language",
"origami"
],
"extensions": [
"origami"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "origami",
"scopeName": "source.origami",
"path": "./syntaxes/origami.tmLanguage.json"
}
],
"keybindings": [
{
"command": "origami-vscode.openPreview",
"key": "ctrl+k v",
"mac": "cmd+k v",
"when": "editorLangId == origami"
}
],
"menus": {
"editor/context": [
{
"command": "origami-vscode.openPreview",
"when": "editorLangId == origami",
"group": "origami-vscode"
}
],
"editor/title": [
{
"command": "origami-vscode.openPreview",
"when": "editorLangId == origami",
"group": "navigation"
}
]
}
},
"dependencies": {
"@origamidl/webgl": "file://../webgl-runtime"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"typescript": "^2.0.3",
"vscode": "^1.1.13"
}
}