-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.26 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.26 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
{
"name": "malody-prettify",
"displayName": "Malody Prettify",
"description": "Prettify Malody's chart format .mc",
"version": "0.0.1",
"author": {
"name": "LuiCat",
"url": "https://github.com/LuiCat"
},
"publisher": "LuiCat",
"repository": "github:LuiCat/malody-prettify",
"license": "MIT",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Programming Languages",
"Formatters"
],
"keywords": [
"malody",
"chart",
"json",
"prettify",
"formatter",
"mc"
],
"activationEvents": [
"onLanguage:malodychart"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "malodychart",
"aliases": [
"Malody Chart",
"malodychart"
],
"extensions": [
".mc",
".mce"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "malodychart",
"scopeName": "source.malodychart",
"path": "./syntaxes/tsx.tmLanguage"
}
],
"commands": [
{
"command": "malody.prettify",
"category": "Malody",
"title": "Prettify MC",
"enablement": "editorLangId == malodychart"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"package": "npm run compile && vsce package -o malody-prettify.vsix --baseContentUrl https://raw.githubusercontent.com/LuiCat/malody-prettify/master/README.md",
"publish": "npm run package && vsce publish --baseContentUrl https://raw.githubusercontent.com/LuiCat/malody-prettify/master/README.md"
},
"devDependencies": {
"@types/node": "^12.8.1",
"@types/vscode": "^1.43.0",
"tslint": "^6.1.1",
"typescript": "^3.8.3"
},
"dependencies": {
"json-to-ast": "^2.1.0"
}
}