-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.32 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.32 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
{
"name": "human-language",
"displayName": "Human Language",
"description": "Syntax highlighting and diagnostics for .hmn files",
"version": "0.1.0",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": ["Programming Languages"],
"activationEvents": ["onLanguage:hmn"],
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "hmn",
"aliases": ["Human", "hmn"],
"extensions": [".hmn"],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "hmn",
"scopeName": "source.hmn",
"path": "./syntaxes/hmn.tmLanguage.json"
}
],
"configuration": {
"title": "Human",
"properties": {
"human.hmnPath": {
"type": "string",
"default": "hmn",
"description": "Path to the hmn CLI binary."
},
"human.validateOnSave": {
"type": "boolean",
"default": true,
"description": "Run hmn validate on save."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/vscode": "^1.85.0",
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"@vscode/vsce": "^3.0.0"
}
}