-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.52 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "cotowali",
"displayName": "Cotowali",
"description": "Cotowali language support",
"publisher": "cotowali",
"version": "0.0.1",
"engines": {
"vscode": "^1.59.0"
},
"homepage": "https://cotowali.org/",
"bugs": {
"url": "https://github.com/cotowali/vscode-cotowali/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/cotowali/vscode-cotowali"
},
"keywords": [
"cotowali"
],
"categories": [
"Programming Languages"
],
"contributes": {
"languages": [
{
"id": "cotowali",
"aliases": [
"Cotowali",
"cotowali"
],
"extensions": [
".li"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "cotowali",
"scopeName": "source.cotowali",
"path": "./syntaxes/cotowali.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.inline.shell": "shellscript",
"meta.embedded.inline.powershell": "powershell"
}
}
],
"configuration": {
"title": "Cotowali",
"properties": {
"cotowali.kuqi.path": {
"type": "string",
"default": "",
"description": "Specifies Kuqi executable path"
}
}
}
},
"activationEvents": [
"onLanguage:cotowali"
],
"main": "./out/extension.js",
"scripts": {
"package": "vsce package",
"build": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint --ignore-path .gitignore .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^16.6.1",
"@types/vscode": "^1.59.0",
"@types/which": "^2.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"@zakuro9715/eslint-config-typescript": "^4.0.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^7.0.1",
"typescript": "^4.3.5",
"vsce": "^1.96.1"
},
"dependencies": {
"vscode-languageclient": "^7.0.0",
"which": "^2.0.2"
}
}