-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
112 lines (112 loc) · 2.71 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
{
"name": "vscode-nevalang",
"displayName": "Neva",
"main": "dist/extension.js",
"author": {
"email": "[email protected]",
"name": "Emil Valeev",
"url": "https://github.com/emil14"
},
"description": "VSCode extension for Neva programming language",
"publisher": "nevalang",
"version": "0.7.4",
"license": "MIT",
"engines": {
"vscode": "^1.78.0"
},
"bugs": {
"url": "https://github.com/nevalang/vscode-neva/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/nevalang/vscode-neva"
},
"keywords": [
"neva",
"nevalang",
"neva language",
"extension",
"intellisense",
"autocompletion",
"syntax-highlighting",
"visual editor",
"visual programming",
"visual langauge",
"fbp",
"flow based programming",
"dataflow",
"dataflow programming"
],
"categories": [
"Programming Languages",
"Visualization",
"Debuggers",
"Formatters",
"Linters",
"Snippets",
"Testing",
"Other"
],
"contributes": {
"languages": [
{
"id": "neva",
"aliases": [
"Neva",
"nevalang",
"Nevalang",
"NevaLang"
],
"extensions": [
".neva"
],
"configuration": "./language-configuration.json",
"icon": {
"light": "assets/logo.svg",
"dark": "assets/logo.svg"
}
}
],
"grammars": [
{
"language": "neva",
"scopeName": "source.neva",
"path": "./syntaxes/neva.tmLanguage.json"
}
]
},
"activationEvents": [
"workspaceContains:neva.yml",
"workspaceContains:neva.yaml"
],
"icon": "assets/logo_gradient.png",
"dependencies": {
"vscode-languageclient": "^9.0.1"
},
"devDependencies": {
"@types/node": "^16.18.34",
"@types/vscode": "^1.73.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"concurrently": "^8.2.2",
"esbuild": "^0.24.0",
"eslint": "^8.26.0",
"forever": "^4.0.3",
"js-yaml": "^4.1.0",
"nodemon": "^2.0.22",
"npm-run-all": "^4.1.5",
"typescript": "^5.2.2",
"vscode": "^1.1.37"
},
"scripts": {
"build:ts": "tsc --noEmit && node esbuild.js --production",
"build:syntax": "js-yaml syntaxes/neva.tmLanguage.yml > syntaxes/neva.tmLanguage.json",
"build": "npm-run-all build:*",
"watch:syntax": "nodemon --delay 1 --watch syntaxes/neva.tmLanguage.yml --exec npm run build:syntax",
"watch:typecheck": "tsc --noEmit --watch --project tsconfig.json",
"watch:esbuild": "node esbuild.js --watch",
"watch": "npm-run-all -p watch:*",
"start": "npm run watch"
}
}