-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.03 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.03 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
81
82
83
84
{
"name": "vscode-maml",
"displayName": "MAML Language",
"description": "MAML language support for Visual Studio Code",
"version": "0.0.3",
"publisher": "maml",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maml-dev/vscode-maml"
},
"bugs": {
"url": "https://github.com/maml-dev/vscode-maml/issues"
},
"homepage": "https://maml.dev",
"icon": "icon.png",
"engines": {
"vscode": "^1.75.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Linters"
],
"activationEvents": [
"onLanguage:maml"
],
"main": "./dist/extension.js",
"contributes": {
"languages": [
{
"id": "maml",
"aliases": [
"MAML",
"maml"
],
"extensions": [
".maml"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "maml",
"scopeName": "source.maml",
"path": "./syntaxes/maml.tmLanguage.json"
}
],
"configuration": {
"title": "MAML",
"properties": {
"maml.validate": {
"type": "boolean",
"default": true,
"description": "Enable/disable MAML validation"
},
"maml.format.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable MAML formatting"
}
}
}
},
"scripts": {
"build": "esbuild src/extension.ts src/server.ts --bundle --outdir=dist --external:vscode --format=cjs --platform=node --target=node18 --sourcemap",
"watch": "npm run build -- --watch",
"package": "vsce package",
"lint": "tsc --noEmit",
"prepackage": "npm run build"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/vscode": "^1.75.0",
"@vscode/vsce": "^3.7.1",
"esbuild": "^0.27.4",
"maml-ast": "^1.0.0",
"typescript": "^6.0.2",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.12"
}
}