-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
136 lines (136 loc) · 3.87 KB
/
package.json
File metadata and controls
136 lines (136 loc) · 3.87 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "ImageBiTeDSL",
"description": "",
"version": "0.0.1",
"files": [
"bin",
"out",
"src"
],
"publisher": "SOMResearchGroup",
"author": {
"name": "Sergio Morales"
},
"homepage": "https://github.com/SOM-Research/ImageBiTeDSL",
"repository": {
"type": "git",
"url": "https://github.com/SOM-Research/ImageBiTeDSL"
},
"keywords": [
"Generative AI",
"Requirements",
"Ethics",
"Bias",
"Testing",
"LLM",
"DSL"
],
"license": "GPLv3",
"type": "module",
"scripts": {
"build": "tsc -b tsconfig.json && node esbuild.mjs",
"watch": "concurrently -n tsc,esbuild -c blue,yellow \"tsc -b tsconfig.json --watch\" \"node esbuild.mjs --watch\"",
"lint": "eslint src --ext ts",
"langium:generate": "langium generate",
"langium:watch": "langium generate --watch",
"vscode:prepublish": "npm run build && npm run lint"
},
"dependencies": {
"chalk": "~5.3.0",
"commander": "~10.0.0",
"langium": "~2.0.0",
"vscode-languageclient": "~8.0.2"
},
"devDependencies": {
"@types/node": "~16.18.11",
"@types/vscode": "~1.67.0",
"@typescript-eslint/eslint-plugin": "~5.58.0",
"@typescript-eslint/parser": "~5.58.0",
"concurrently": "^7.6.0",
"esbuild": "^0.18.14",
"eslint": "~8.33.0",
"langium-cli": "~2.0.0",
"typescript": "~5.0.4"
},
"displayName": "ImageBiTeDSL",
"engines": {
"vscode": "^1.67.0",
"node": ">=16.0.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "imagebite-dsl",
"aliases": [
"ImageBiTeDSL",
"imagebite-dsl"
],
"extensions": [
".ethml",
".ethics"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "imagebite-dsl",
"scopeName": "source.imagebite-dsl",
"path": "./syntaxes/imagebite-dsl.tmLanguage.json"
}
],
"commands": [
{
"command": "imagebite-dsl.generateJson",
"title": "Generate JSON",
"shortTitle": "Generate JSON",
"category": "ImageBiTeDSL",
"icon": {
"light": "icons/json.png",
"dark": "icons/json.png"
}
},
{
"command": "imagebite-dsl.saveJsonDocument",
"title": "Save JSON",
"shortTitle": "Save JSON",
"category": "ImageBiTeDSL",
"icon": {
"light": "icons/download.png",
"dark": "icons/download.png"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == langbite-dsl",
"command": "imagebite-dsl.generateJson",
"group": "navigation"
},
{
"when": "liveJSONPreviewer",
"command": "imagebite-dsl.saveJsonDocument",
"group": "navigation"
}
]
},
"iconThemes": [
{
"id": "imagebitedsl",
"label": "ImageBiTe DSL",
"path": "./icons/imagebite-dsl.icon-theme.json"
}
]
},
"activationEvents": [
"onLanguage:imagebite-dsl"
],
"main": "./out/extension/main.cjs",
"bin": {
"ethics-ml-cli": "./bin/cli.js"
}
}