-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.24 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.24 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
{
"name": "m-stdlib-vscode",
"displayName": "m-stdlib",
"description": "VS Code language tooling for m-stdlib — manifest-driven hover, goto-definition, and completion for STD* symbols in M (MUMPS) source.",
"version": "0.2.0",
"publisher": "rafael5",
"license": "MIT",
"engines": {
"vscode": "^1.85.0"
},
"categories": [
"Programming Languages",
"Other"
],
"keywords": [
"M",
"MUMPS",
"YottaDB",
"IRIS",
"VistA",
"m-stdlib"
],
"repository": {
"type": "git",
"url": "https://github.com/m-dev-tools/m-stdlib-vscode"
},
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:m"
],
"contributes": {
"languages": [
{
"id": "m",
"aliases": ["M", "MUMPS"],
"extensions": [".m"]
}
],
"snippets": [
{
"language": "m",
"path": "./snippets/m.json"
}
],
"configuration": {
"title": "m-stdlib",
"properties": {
"m-stdlib.manifestPath": {
"type": "string",
"default": "",
"description": "Path to dist/stdlib-manifest.json. Empty = auto-discover: workspace folder walk-up, then $M_CLI_MANIFEST, then the manifest bundled with the extension. Set this to your m-stdlib checkout's dist/stdlib-manifest.json for live tracking."
},
"m-stdlib.enableHover": {
"type": "boolean",
"default": true,
"description": "Show hover docs on `^STD*` and `label^STDxxx` symbols."
},
"m-stdlib.enableDefinition": {
"type": "boolean",
"default": true,
"description": "Enable Cmd/Ctrl-click goto-definition for `^STD*` symbols."
},
"m-stdlib.enableCompletion": {
"type": "boolean",
"default": true,
"description": "Suggest module + label names as completions in `.m` files."
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"test": "tsc -p ./ --noEmit && node --test --experimental-strip-types tests/*.test.ts"
},
"dependencies": {},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.0"
}
}