-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 2.53 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
{
"name": "dircolors",
"displayName": "dircolors",
"description": "Syntax highlighting, formatting and snippets for .dircolors files",
"version": "1.1.1",
"author": "Daniel Grefberg",
"publisher": "duniul",
"repository": {
"type": "git",
"url": "https://github.com/duniul/vscode-dircolors"
},
"bugs": {
"url": "https://github.com/duniul/vscode-dircolors/issues"
},
"homepage": "https://github.com/duniul/vscode-dircolors",
"icon": "images/dircolors-icon.png",
"engines": {
"vscode": "^1.47.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"shell",
"bash",
"zsh",
"fish",
"dircolors",
"LS_COLORS"
],
"main": "dist/extension.js",
"activationEvents": [
"onLanguage:dircolors"
],
"contributes": {
"languages": [
{
"id": "dircolors",
"aliases": [
"dircolors",
"LS_COLORS"
],
"extensions": [
".dircolors"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "dircolors",
"scopeName": "source.dircolors",
"path": "./syntaxes/dircolors.tmLanguage.json"
}
],
"snippets": [
{
"language": "dircolors",
"path": "./snippets/attributes.json"
},
{
"language": "dircolors",
"path": "./snippets/colors.json"
},
{
"language": "dircolors",
"path": "./snippets/keywords.json"
}
],
"configuration": {
"title": "dircolors",
"properties": {
"dircolors.minSpacing": {
"type": "number",
"default": 1,
"minimum": 1,
"description": "Minimum number of spaces between keyword and value."
},
"dircolors.formatColumns": {
"type": "boolean",
"default": true,
"description": "Toggle whether or not neighboring declarations should be formatted in columns."
}
}
}
},
"scripts": {
"dev": "webpack --mode=development --watch",
"build": "rm -rf dist && webpack --mode=production",
"release": "yarn build && vsce publish",
"package": "yarn build && vsce package"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"prettier": "^2.0.5",
"ts-loader": "^8.0.1",
"typescript": "^3.9.7",
"vsce": "^1.77.0",
"vscode": "^1.1.37",
"webpack": "^4.44.0",
"webpack-cli": "^3.3.12"
}
}