This repository has been archived by the owner on May 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
98 lines (98 loc) · 2.18 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
{
"name": "lightless",
"displayName": "Lightless Theme",
"description": "An improved dark theme for Visual Studio Code, inspired by Deepdark by Nimda and Material Theme by Mattia Astorino.",
"version": "0.0.9",
"publisher": "TwoDevs",
"engines": {
"node": "<=12",
"vscode": "^1.43.0"
},
"__metadata": {
"publisherDisplayName": "Two Devs",
"publisherId": "TwoDevs"
},
"homepage": "https://github.com/RadoiAndrei/lightless-theme/blob/master/README.md",
"license": "MIT",
"categories": ["Themes"],
"icon": "assets/logo.jpg",
"keywords": [
"lightless",
"blackout",
"dim",
"dark",
"black",
"grey",
"gray",
"material",
"darkgrey",
"theme",
"deepdark"
],
"galleryBanner": {
"color": "#080808",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/RadoiAndrei/lightless-theme/"
},
"scripts": {
"build": "npx ts-node --transpile-only ./src",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"contributes": {
"themes": [
{
"label": "Lightless Dark Theme",
"uiTheme": "vs-dark",
"path": "./dist/themes/lightless-dark.json"
}
]
},
"dependencies": {
"color": "^3.1.2"
},
"devDependencies": {
"@types/color": "^3.0.1",
"@types/node": "^14.0.23",
"@typescript-eslint/eslint-plugin": "^3.6.0",
"@typescript-eslint/parser": "^3.6.0",
"comment-json": "^4.1.0",
"husky": "^4.2.5",
"prettier": "2.0.5",
"pretty-quick": "^2.0.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.9.6"
},
"prettier": {
"semi": true,
"tabWidth": 2,
"trailingComma": "none",
"bracketSpacing": true,
"arrowParens": "always",
"useTabs": false,
"singleQuote": true,
"endOfLine": "lf",
"overrides": [
{
"files": [
"package.json",
"tslint.json",
"tsconfig.json",
"src/template-theme.json"
],
"options": {
"parser": "json"
}
}
]
}
}