-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.27 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
{
"name": "flor-language",
"displayName": "Flor Language",
"description": "VS Code extension for the Flor language",
"version": "0.1.7",
"publisher": "kiebor81",
"repository": {
"type": "git",
"url": "https://github.com/kiebor81/flor-language-service.git"
},
"engines": {
"vscode": "^1.60.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:flor",
"onCommand:extension.openFlorView"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "flor",
"aliases": [
"Flor",
"flor"
],
"extensions": [
".flor"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "flor",
"scopeName": "source.flor",
"path": "./syntaxes/flor.tmLanguage.json"
}
],
"snippets": [
{
"language": "flor",
"path": "./snippets/flor.json"
}
],
"commands": [
{
"command": "extension.openFlorView",
"title": "Open Flor View"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "florViewContainer",
"title": "Flor",
"icon": "resources/flor-icon.svg"
}
]
},
"views": {
"florViewContainer": [
{
"id": "florView",
"name": "Flor"
}
]
},
"configurationDefaults": {
"[flor]": {
"editor.formatOnSave": true
}
}
},
"scripts": {
"vscode:prepublish": "webpack",
"compile": "webpack",
"watch": "webpack --watch",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/node": "^14.14.37",
"@types/vscode": "^1.60.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.19.0",
"typescript": "^4.1.3",
"vscode-test": "^1.4.0",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.2",
"ts-loader": "^9.2.3"
},
"dependencies": {
"rete": "^2.0.5",
"rete-area-plugin": "^2.1.3",
"rete-connection-plugin": "^2.0.5",
"rete-vue-render-plugin": "^0.5.2"
}
}