Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/coffeescript/package.json
3309 views
1
{
2
"name": "coffeescript",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"publisher": "vscode",
7
"license": "MIT",
8
"engines": {
9
"vscode": "*"
10
},
11
"scripts": {
12
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"
13
},
14
"categories": ["Programming Languages"],
15
"contributes": {
16
"languages": [
17
{
18
"id": "coffeescript",
19
"extensions": [
20
".coffee",
21
".cson",
22
".iced"
23
],
24
"aliases": [
25
"CoffeeScript",
26
"coffeescript",
27
"coffee"
28
],
29
"configuration": "./language-configuration.json"
30
}
31
],
32
"grammars": [
33
{
34
"language": "coffeescript",
35
"scopeName": "source.coffee",
36
"path": "./syntaxes/coffeescript.tmLanguage.json"
37
}
38
],
39
"breakpoints": [
40
{
41
"language": "coffeescript"
42
}
43
],
44
"snippets": [
45
{
46
"language": "coffeescript",
47
"path": "./snippets/coffeescript.code-snippets"
48
}
49
],
50
"configurationDefaults": {
51
"[coffeescript]": {
52
"diffEditor.ignoreTrimWhitespace": false,
53
"editor.defaultColorDecorators": "never"
54
}
55
}
56
},
57
"repository": {
58
"type": "git",
59
"url": "https://github.com/microsoft/vscode.git"
60
}
61
}
62
63