-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
150 lines (150 loc) · 4.6 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
{
"name": "DescribeML",
"displayName": "DescribeML",
"description": "DescribeML is a language plug-in to describe machine-learning datasets in a standard format. Build better data describing the composition, provenance and social concerns of your dataset.",
"version": "1.2.1",
"engines": {
"vscode": "^1.56.0"
},
"publisher": "SOMResearchGroup",
"author": {
"name": "Joan Giner-Miguelez"
},
"homepage": "https://github.com/SOM-Research/DescribeML",
"repository": {
"type": "git",
"url": "https://github.com/SOM-Research/DescribeML"
},
"icon": "fileicons/requisito.png",
"keywords": [
"Data Science",
"Datasets",
"ML",
"Machine Learning",
"DSL"
],
"license": "GPLv3",
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "dataset-descriptor",
"aliases": [
"dataset-descriptor",
"dataset-descriptor"
],
"extensions": [
".descml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dataset-descriptor",
"scopeName": "source.dataset-descriptor",
"path": "./syntaxes/dataset-descriptor.tmLanguage.json"
}
],
"commands": [
{
"command": "datadesc.loadDataset",
"title": "Load Dataset Files",
"shortTitle": "Dataset",
"category": "Dataset",
"icon": {
"light": "fileicons/cloud-computing.png",
"dark": "fileicons/cloud-computing.png"
}
},
{
"command": "datadesc.generateDocumentation",
"title": "Generate documentation",
"shortTitle": "Documentation",
"category": "Dataset",
"icon": {
"light": "fileicons/html.png",
"dark": "fileicons/html.png"
}
},
{
"command": "datadesc.saveDocumentHTML",
"title": "Save HTML",
"shortTitle": "Save HTML",
"category": "Dataset",
"icon": {
"light": "fileicons/save.png",
"dark": "fileicons/save.png"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == dataset-descriptor",
"command": "datadesc.generateDocumentation",
"group": "navigation"
},
{
"when": "resourceLangId == dataset-descriptor",
"command": "datadesc.loadDataset",
"group": "navigation"
},
{
"when": "liveHTMLPreviewer",
"command": "datadesc.saveDocumentHTML",
"group": "navigation"
}
]
},
"iconThemes": [
{
"id": "datasetdescriptor",
"label": "Dataset Descriptor",
"path": "./fileicons/dataset-descriptor.icon-theme.json"
}
]
},
"activationEvents": [
"onLanguage:dataset-descriptor"
],
"files": [
"bin",
"out",
"src"
],
"bin": {
"dataset-descriptor-cli": "./bin/cli"
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run build && npm run lint",
"build": "tsc -b tsconfig.json",
"watch": "tsc -b tsconfig.json --watch",
"lint": "eslint src --ext ts",
"langium:generate": "langium generate",
"langium:watch": "langium generate --watch"
},
"dependencies": {
"chalk": "^4.1.2",
"chevrotain": "^9.1.0",
"commander": "^8.0.0",
"csv-parse": "^5.3.2",
"langium": "^1.1.0",
"pug": "^3.0.2",
"vscode-languageclient": "^8.0.2",
"vscode-languageserver": "^8.0.2",
"vscode-uri": "^3.0.2"
},
"devDependencies": {
"@types/node": "^14.17.3",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.17.0",
"langium-cli": "1.1.0",
"typescript": "^4.7.4"
}
}