-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 2.38 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
{
"name": "nmtran",
"version": "0.2.3",
"license": "MIT",
"displayName": "NMTRAN",
"publisher": "vrognas",
"sponsor": {
"url": "https://www.paypal.me/vrognas"
},
"description": "Language extension for NMTRAN (NONMEM) files",
"icon": "images/nmtran.png",
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"nonmem",
"pharmacometrics"
],
"homepage": "https://github.com/vrognas/vscode-nmtran",
"bugs": {
"url": "https://github.com/vrognas/vscode-nmtran/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/vrognas/vscode-nmtran.git"
},
"activationEvents": [],
"main": "./client/out/extension.js",
"engines": {
"vscode": "^1.80.0"
},
"contributes": {
"languages": [
{
"id": "nmtran",
"aliases": [
"NMTRAN",
"nmtran"
],
"extensions": [
".mod",
".ctl",
".lst",
".modt",
".phi",
".coi",
".cor",
".cov",
".cnv",
".scm",
".ext"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "nmtran",
"scopeName": "source.nmtran",
"path": "./syntaxes/nmtran.tmLanguage.json"
}
],
"snippets": [
{
"language": "nmtran",
"path": "./snippets/snippets.json"
}
],
"configuration": {
"type": "object",
"title": "NMTRAN configuration",
"properties": {
"nmtranServer.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the NMTRAN server."
}
}
}
},
"semanticHighlighting": true,
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"lint": "eslint ./client/src ./server/src --ext .ts,.tsx",
"postinstall": "cd client && npm install && cd ../server && npm install && cd .."
},
"devDependencies": {
"@types/node": "^20.8.0",
"@types/vscode": "^1.80.0",
"js-yaml": "^4.1.0",
"typescript": "^5.1.3",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11"
}
}