-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
110 lines (110 loc) · 2.76 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "mun",
"displayName": "Mun",
"version": "0.3.0",
"preview": true,
"icon": "icon.png",
"description": "Mun language integration",
"main": "./dist/main.js",
"publisher": "mun-lang",
"repository": {
"type": "git",
"url": "git+https://github.com/mun-lang/mun.git"
},
"author": "The Mun Team <[email protected]>",
"license": "PolyForm-Noncommercial-1.0.0",
"bugs": {
"url": "https://github.com/mun-lang/mun/issues"
},
"categories": [
"Programming Languages"
],
"keywords": [
"mun"
],
"homepage": "https://github.com/mun-lang/mun#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@types/vscode": "^1.45.1",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^7.1.0",
"esbuild": "^0.14.27",
"tslib": "^2.3.0",
"typescript": "^4.6.3",
"typescript-formatter": "^7.2.2",
"vsce": "^2.7.0"
},
"scripts": {
"vscode:prepublish": "npm run build-base -- --minify",
"build-base": "esbuild ./src/main.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node --target=node16",
"package": "vsce package",
"build": "npm run build-base -- --sourcemap",
"watch": "npm run build-base -- --sourcemap --watch",
"lint": "tsfmt --verify && eslint -c .eslintrc.js --ext ts ./src",
"fmt": " tsfmt -r && eslint -c .eslintrc.js --ext ts ./src --fix"
},
"activationEvents": [
"onLanguage:mun",
"workspaceContains:**/mun.toml"
],
"engines": {
"vscode": "^1.45.1"
},
"contributes": {
"languages": [
{
"id": "mun",
"aliases": [
"Mun",
"mun"
],
"extensions": [
".mun"
],
"configuration": "language-configuration.json"
}
],
"grammars": [
{
"language": "mun",
"scopeName": "source.mun",
"path": "syntaxes/mun.tmGrammar.json"
}
],
"configuration": {
"type": "object",
"title": "Mun",
"properties": {
"mun.executablePath": {
"type": [
"null",
"string"
],
"default": null,
"description": "Path to the Mun executable"
},
"mun.trace.server": {
"type": "string",
"scope": "window",
"enum": [
"off",
"messages",
"verbose"
],
"enumDescriptions": [
"No traces",
"Error only",
"Full log"
],
"default": "off",
"description": "Trace requests to the Mun language server"
}
}
}
},
"dependencies": {
"vscode-languageclient": "^6.1.3"
}
}