-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
85 lines (85 loc) · 1.98 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
{
"name": "mangrove",
"displayName": "Mangrove",
"description": "Mangrove language support for Visual Studio Code. Provides linting, code completion, navigation, formatting and more.",
"version": "0.0.1",
"publisher": "mangrove-lang",
"engines": {
"vscode": "^1.52.0"
},
"license": "(BSD-3-Clause)",
"repository": {
"type": "git",
"url": "https://github.com/mangrove-lang/mangrove-vscode"
},
"bugs": {
"url": "https://github.com/mangrove-lang/mangrove-vscode/issues"
},
"categories": [
"Programming Languages",
"Linters",
"Snippets",
"Formatters",
"Other"
],
"keywords": [
"mangrove",
"mangrove-lang"
],
"preview": true,
"activationEvents": [
"onLanguage:mangrove"
],
"main": "./build/client/extension.js",
"scripts": {
"vscode:prepublish": "npm run lint && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"test": "jest",
"lint": "eslint --ext ts src",
"prettier": "prettier \"**/*.ts\"",
"installDevExtension": "npm install && ./node_modules/.bin/vsce package -o ./build/mangrove-vscode-dev.vsix && code --install-extension ./build/mangrove-vscode-dev.vsix"
},
"dependencies": {
"ts-results": "^3.3.0",
"tslib": "^2.5.3",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.7"
},
"devDependencies": {
"@types/node": "^18.7.16",
"@types/vscode": "^1.52.0",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "~5.0.4",
"@vscode/vsce": "^2.19.0"
},
"overrides": {
"semver": "^7.5.3"
},
"contributes": {
"languages": [
{
"id": "mangrove",
"extensions": [
".grove"
],
"configuration": "./language-configuration.json",
"icon": {
"dark": "mangrove_icon.svg",
"light": "mangrove_icon.svg"
}
}
],
"snippets": [
{
"language": "mangrove",
"path": "./snippets/mangrove.json"
}
]
}
}