-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
131 lines (131 loc) · 3.25 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
{
"name": "silverstripe",
"displayName": "SilverStripe",
"description": "Syntax highlighter for SilverStripe template files (.ss)",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#005AE1",
"theme": "dark"
},
"version": "1.0.0",
"publisher": "adrianhumphreys",
"author": "adrian",
"license": "MIT",
"bugs": {
"url": "https://github.com/adrhumphreys/vscode-silverstripe/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.46.0"
},
"repository": {
"type": "git",
"url": "https://github.com/adrhumphreys/vscode-silverstripe.git"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"php",
"silverstripe",
"html",
"template"
],
"main": "./dist/extension.js",
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"grammars": [
{
"language": "silverstripe",
"scopeName": "text.html.ss",
"path": "./syntax/silverstripe.tmLanguage.json"
}
],
"languages": [
{
"id": "silverstripe",
"aliases": [
"HTML SilverStripe",
"SilverStripe",
"silverstripe",
"ss"
],
"extensions": [
".ss"
],
"configuration": "./language-configuration.json"
}
],
"configuration": {
"title": "SilverStripe",
"properties": {
"SilverStripe.comments": {
"scope": "resource",
"type": "string",
"enum": [
"true",
"false",
"null"
],
"enumDescriptions": [
"Enable",
"Disable",
"Inherit from `.silverstripe_sanchez`"
],
"default": "null",
"description": "Enable/Disable if snippets should include comments."
},
"SilverStripe.useItems": {
"scope": "resource",
"type": "string",
"enum": [
"true",
"false",
"null"
],
"enumDescriptions": [
"Enable",
"Disabled",
"Inherit from `.silverstripe_sanchez`"
],
"default": "null",
"description": "Enable/Disable if snippets should attempt to inject use item namespacing automatically."
},
"SilverStripe.showSnippetCount": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Enable/Disable snippet display count on activate."
}
}
}
},
"dependencies": {
"silverstripe-sanchez": "^2.0.0"
},
"devDependencies": {
"@types/node": "^8.10.25",
"@types/vscode": "^1.34.0",
"standard": "^14.3.4",
"standard-loader": "^7.0.0",
"ts-loader": "^8.0.0",
"tslint": "^5.16.0",
"typescript": "^3.9.6",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12"
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./"
},
"__metadata": {
"id": "3da1812a-9acc-4e12-88c0-0b1ab8cfe709",
"publisherId": "bfa7efa7-d32c-4e4b-8699-a6e4bd11c4e1",
"publisherDisplayName": "Adrian Humphreys"
}
}