-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.96 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.96 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
{
"name": "SoftwareDiversityCard",
"description": "SoftwareDiversityCard is a domain-specific language plug-in to describe social characteristics of a software development initiative.",
"version": "0.0.1",
"files": [
"bin",
"out",
"src"
],
"publisher": "SOMResearchGroup",
"author": {
"name": "Sergio Morales"
},
"homepage": "https://github.com/SOM-Research/SoftwareDiversityCard",
"repository": {
"type": "git",
"url": "https://github.com/SOM-Research/SoftwareDiversityCard"
},
"keywords": [
"Software Engineering",
"Diversity",
"Inclusion"
],
"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": "SoftwareDiversityCard",
"engines": {
"vscode": "^1.67.0",
"node": ">=16.0.0"
},
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "swdc-dsl",
"aliases": [
"SoftwareDiversityCard",
"swdc-dsl"
],
"extensions": [
".swdc",
".sdc"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "swdc-dsl",
"scopeName": "source.swdc-dsl",
"path": "./syntaxes/swdc-dsl.tmLanguage.json"
}
],
"commands": [
{
"command": "swdc-dsl.generateJson",
"title": "Generate JSON",
"shortTitle": "Generate JSON",
"category": "SoftwareDiversityCard",
"icon": {
"light": "icons/json.png",
"dark": "icons/json.png"
}
},
{
"command": "swdc-dsl.generateMd",
"title": "Generate MD Documentation",
"shortTitle": "Generate MD",
"category": "SoftwareDiversityCard",
"icon": {
"light": "icons/markdown.png",
"dark": "icons/markdown.png"
}
}
],
"menus": {
"editor/title": [
{
"when": "resourceLangId == swdc-dsl",
"command": "swdc-dsl.generateJson",
"group": "navigation"
},
{
"when": "resourceLangId == swdc-dsl",
"command": "swdc-dsl.generateMd",
"group": "navigation"
}
]
},
"iconThemes": [
{
"id": "swdcdsl",
"label": "Software Diversity Card",
"path": "./icons/swdc-dsl.icon-theme.json"
}
]
},
"activationEvents": [
"onLanguage:swdc-dsl"
],
"main": "./out/extension/main.cjs",
"bin": {
"ethics-ml-cli": "./bin/cli.js"
}
}