Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/ini/package.json
3290 views
1
{
2
"name": "ini",
3
"displayName": "%displayName%",
4
"description": "%description%",
5
"version": "1.0.0",
6
"private": true,
7
"publisher": "vscode",
8
"license": "MIT",
9
"engines": {
10
"vscode": "*"
11
},
12
"scripts": {
13
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin textmate/ini.tmbundle Syntaxes/Ini.plist ./syntaxes/ini.tmLanguage.json"
14
},
15
"categories": ["Programming Languages"],
16
"contributes": {
17
"languages": [
18
{
19
"id": "ini",
20
"extensions": [
21
".ini"
22
],
23
"aliases": [
24
"Ini",
25
"ini"
26
],
27
"configuration": "./ini.language-configuration.json"
28
},
29
{
30
"id": "properties",
31
"extensions": [
32
".conf",
33
".properties",
34
".cfg",
35
".directory",
36
".gitattributes",
37
".gitconfig",
38
".gitmodules",
39
".editorconfig",
40
".repo"
41
],
42
"filenames": [
43
"gitconfig",
44
".env"
45
],
46
"filenamePatterns": [
47
"**/.config/git/config",
48
"**/.git/config",
49
".*.env"
50
],
51
"aliases": [
52
"Properties",
53
"properties"
54
],
55
"configuration": "./properties.language-configuration.json"
56
}
57
],
58
"grammars": [
59
{
60
"language": "ini",
61
"scopeName": "source.ini",
62
"path": "./syntaxes/ini.tmLanguage.json"
63
},
64
{
65
"language": "properties",
66
"scopeName": "source.ini",
67
"path": "./syntaxes/ini.tmLanguage.json"
68
}
69
]
70
},
71
"repository": {
72
"type": "git",
73
"url": "https://github.com/microsoft/vscode.git"
74
}
75
}
76
77