-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.14 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.14 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
{
"name": "baci-vscode",
"displayName": "BACI C-- Support",
"description": "Prettify and show errors for BACI C-- (*.cm) files: formatting + diagnostics.",
"version": "0.1.0",
"publisher": "robertbiv",
"engines": {"vscode": "^1.85.0"},
"categories": ["Programming Languages", "Linters", "Formatters"],
"keywords": ["baci", "c--", "concurrency", "semaphore", "monitor"],
"repository": {
"type": "git",
"url": "https://github.com/robertbiv/BACI-VS-Code-Plugin.git"
},
"bugs": {
"url": "https://github.com/robertbiv/BACI-VS-Code-Plugin/issues"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"languages": [{"id": "baci", "aliases": ["BACI", "C--"], "extensions": [".cm"], "configuration": "./language-configuration.json"}],
"grammars": [{"language": "baci", "scopeName": "source.baci", "path": "./syntaxes/baci.tmLanguage.json"}],
"commands": [{"command": "baci-vscode.formatDocument", "title": "BACI: Format Document"}],
"configuration": {
"title": "BACI C--",
"properties": {
"baci.defaultStringLength": {
"type": "number",
"default": 20,
"minimum": 1,
"description": "Default length used by quick fix when declaring string length."
},
"baci.format.spaceAroundOperators": {
"type": "boolean",
"default": true,
"description": "Insert spaces around operators (=,+,-,*,/,<<,>>)."
},
"baci.format.indentSize": {
"type": "number",
"default": 2,
"minimum": 1,
"description": "Indent size in spaces for braces and blocks."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"watch": "tsc -w -p ./",
"lint": "eslint . --ext .ts",
"package": "vsce package",
"test": "echo 'No tests yet'"
},
"devDependencies": {
"@types/node": "^20.12.0",
"@types/vscode": "^1.85.0",
"eslint": "^8.57.0",
"typescript": "^5.6.3",
"@vscode/vsce": "^3.0.0",
"@typescript-eslint/parser": "^6.7.0",
"@typescript-eslint/eslint-plugin": "^6.7.0"
},
"license": "MIT"
}