-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "toml",
"displayName": "TOML Language Support",
"description": "TOML language support",
"version": "0.6.0",
"publisher": "be5invis",
"repository": {
"type": "git",
"url": "https://github.com/GalAster/vscode-toml.git"
},
"engines": {
"vscode": "^1.8.0"
},
"main": "./dist/extension.js",
"browser": "./dist/extension-browser.js",
"activationEvents": [
"onLanguage:toml"
],
"categories": [
"Programming Languages",
"Formatters"
],
"scripts": {
"build": "ts-node source/build.ts && tsc",
"lint": "tslint **/*.ts --fix"
},
"contributes": {
"languages": [
{
"id": "toml",
"aliases": [
"TOML"
],
"extensions": [
".toml",
".tml"
],
"filenames": [
"Cargo.lock",
"Gopkg.lock"
],
"mimetypes": [
"text/x-toml"
],
"configuration": "./extension/toml.configuration.json"
}
],
"grammars": [
{
"language": "toml",
"scopeName": "source.toml",
"path": "./extension/toml.tmLanguage.json"
}
]
},
"dependencies": {
"toml_vscode": "^0.1.3"
},
"devDependencies": {
"@types/node": "^13.7.6",
"ts-node": "^10.4.0",
"typescript": "^4.4.4",
"vscode": "^1.1.37"
}
}