-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
69 lines (69 loc) · 1.47 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
{
"name": "poe-filter",
"displayName": "POE Filter",
"description": "Highlighting for POE filter.",
"version": "0.1.4",
"license": "MIT",
"author": "Robby",
"publisher": "robby",
"engines": {
"vscode": "^1.18.0"
},
"categories": [
"Formatters"
],
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/explooosion/PoeFilterSyntax"
},
"bugs": {
"url": "https://github.com/explooosion/PoeFilterSyntax/issues"
},
"main": "./dist/extension",
"activationEvents": [
"workspaceContains:*.filter"
],
"scripts": {
"vscode:prepublish": "webpack --mode production",
"compile": "webpack --mode none",
"watch": "webpack --mode none --watch",
"postinstall": "node ./node_modules/vscode/bin/install",
"test-compile": "webpack --mode development"
},
"contributes": {
"languages": [
{
"id": "filter",
"aliases": [
"Filter",
"filter"
],
"extensions": [
".filter",
".ruthlessfilter"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "filter",
"scopeName": "source.filter",
"path": "./syntaxes/Filter.tmLanguage.json"
}
]
},
"__metadata": {
"id": "1d49dfdc-2274-4171-9206-f2f471c416d8",
"publisherDisplayName": "Robby",
"publisherId": "d3da4c8a-6031-4a1b-8bc5-fc54c208c025"
},
"devDependencies": {
"@types/node": "^12.0.10",
"ts-loader": "^6.0.4",
"typescript": "^3.5.2",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4"
}
}