-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.61 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.61 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
85
86
87
88
89
{
"name": "enfusion-script",
"displayName": "Enfusion Script",
"description": "Enforce/Enscript language support and DayZ game‑specific tooling.",
"version": "0.1.0",
"publisher": "yuval",
"icon": "media/logo.png",
"engines": {
"vscode": "^1.90.0"
},
"categories": [
"Programming Languages"
],
"repository": {
"type": "git",
"url": "https://github.com/yuvalino/enscript"
},
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "enscript",
"aliases": [
"Enscript",
"enscript"
],
"extensions": [
".c",
".cproj"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "enscript",
"scopeName": "source.enscript",
"path": "./syntaxes/enscript.tmLanguage.json"
}
],
"commands": [
{
"command": "enscript.restartServer",
"title": "Enscript: Restart Language Server"
},
{
"command": "enscript.dumpDiagnostics",
"title": "Enscript: Dump Diagnostics"
}
],
"configuration": {
"title": "Enfusion Script",
"properties": {
"enscript.includePaths": {
"type": "array",
"default": [],
"description": "List of paths to index for base game data (e.g. P:\\scripts\\ folder)",
"items": {
"type": "string"
}
}
}
}
},
"scripts": {
"compile": "tsc -p . && tsc -p server",
"watch": "tsc -w -p . & tsc -w -p server",
"lint": "echo \"(lint placeholder)\"",
"test": "jest",
"clean": "rimraf out server/out",
"package": "npm run compile && vsce package",
"publish": "npm run compile && vsce publish"
},
"dependencies": {
"vscode-languageclient": "^9.0.0",
"vscode-languageserver": "^9.0.0",
"vscode-languageserver-textdocument": "^1.0.5",
"vscode-uri": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.18",
"@types/vscode": "^1.90.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.3.4",
"typescript": "^5.4.5"
}
}