-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) 路 2.23 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) 路 2.23 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
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
{
"name": "adbt",
"displayName": "Adblock template support (ADBT)",
"publisher": "igordvlpr",
"description": "馃摐 Provides ADBT (Adblock template) support in Visual Studio Code. 馃獏",
"version": "1.4.0",
"engines": {
"vscode": "^1.80.0"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onLanguage:adbt",
"workspaceContains:**/*.adbt",
"workspaceContains:**/*.adbm"
],
"extensionKind": [
"workspace"
],
"files": [
"dist",
"meta",
"snippets",
"syntaxes",
"icons/adbt.png"
],
"main": "./dist/extension.js",
"icon": "icons/adbt.png",
"galleryBanner": {
"color": "#28282d",
"theme": "dark"
},
"keywords": [
"adbt",
"adblock",
"template",
"engine",
"adblock-template",
"compile",
"syntax-highlight",
"utility",
"igordvlpr"
],
"contributes": {
"configurationDefaults": {
"files.associations": {
"*.adbm": "json"
},
"[adbt]": {
"files.eol": "\n"
}
},
"languages": [
{
"id": "adbt",
"aliases": [
"Adblock Template",
"ADBT"
],
"extensions": [
".adbt"
],
"icon": {
"light": "./icons/adbt-file-icon.svg",
"dark": "./icons/adbt-file-icon.svg"
}
}
],
"grammars": [
{
"language": "adbt",
"scopeName": "source.adbt",
"path": "./syntaxes/adbt.tmLanguage.json"
}
],
"jsonValidation": [
{
"fileMatch": [
"*.adbm"
],
"url": "./meta/adbm-schema.json"
}
],
"snippets": [
{
"language": "adbt",
"path": "./snippets/adbt-snippets.json"
}
]
},
"scripts": {
"base": "esbuild src/extension.ts --bundle --outfile=dist/extension.js --platform=node --external:vscode --target=node16",
"vscode:prepublish": "npm run make",
"make": "npm run -S base -- --minify",
"dev": "tsc",
"pkg": "vsce package",
"pub": "vsce publish"
},
"devDependencies": {
"@types/node": "^16.17.1",
"@types/vscode": "^1.80.0",
"typescript": "^5.2.2",
"esbuild": "^0.19.2"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/igorskyflyer/vscode-adbt/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/igorskyflyer/vscode-adbt.git"
},
"homepage": "https://github.com/igorskyflyer/vscode-adbt/blob/main/README.md"
}