-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
137 lines (137 loc) · 4.08 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "vscode-pawn",
"displayName": "Pawn Tools",
"description": "Pawn tools for vscode. Includes syntax highlighting and snippets/completions for common libraries.",
"version": "1.0.0",
"publisher": "southclaws",
"engines": {
"vscode": "^1.51.1"
},
"bugs": {
"url": "https://github.com/Southclaws/vscode-pawn/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/Southclaws/vscode-pawn.git"
},
"icon": "sampctl-icon.png",
"categories": [
"Other",
"Programming Languages"
],
"activationEvents": [
"onLanguage:pawn"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "pawn",
"aliases": [
"Pawn",
"pawn"
],
"extensions": [
".p",
".pawn",
".pwn",
".inc"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "pawn",
"scopeName": "source.pawn",
"path": "./syntaxes/Pawn.tmLanguage"
}
],
"snippets": [
{
"language": "pawn",
"path": "./snippets/macros.json"
},
{
"language": "pawn",
"path": "./snippets/functions-standard.json"
},
{
"language": "pawn",
"path": "./snippets/functions-community.json"
},
{
"language": "pawn",
"path": "./snippets/definitions-standard.json"
},
{
"language": "pawn",
"path": "./snippets/definitions-community.json"
}
],
"problemMatchers": [
{
"name": "pawncc",
"owner": "pawn",
"fileLocation": "absolute",
"pattern": {
"regexp": "^(.*?)\\(([0-9]*)[- 0-9]*\\) \\: (fatal error|error|warning) [0-9]*\\: (.*)$",
"file": 1,
"location": 2,
"severity": 3,
"message": 4
}
},
{
"name": "sampctl",
"owner": "pawn",
"fileLocation": "absolute",
"pattern": [
{
"regexp": "^(.+):([0-9]+) \\((\\w+)\\) (.+)$",
"file": 1,
"location": 2,
"severity": 3,
"message": 4
}
],
"background": {
"activeOnStart": true,
"beginsPattern": "watch-build: starting compilation",
"endsPattern": "watch-build: finished"
}
}
],
"commands": [
{
"command": "extension.packageEnsure",
"title": "Ensure Package Dependencies"
},
{
"command": "extension.packageBuild",
"title": "Build Pawn Package"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"update-vscode": "node ./node_modules/vscode/bin/install",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^4.1.2",
"vscode": "^1.1.36",
"@types/node": "^14.14.11",
"@types/mocha": "^8.2.0"
},
"dependencies": {
"axios": "^0.21.0",
"vscode-languageclient": "^6.1.3",
"vscode-languageserver": "^6.1.1",
"vscode-languageserver-textdocument": "^1.0.1"
}
}