-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
123 lines (123 loc) · 3.43 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
{
"name": "theme",
"displayName": "Theme",
"description": "A Visual Studio Code theme for those of us who like to code late into the night",
"version": "3.1.0",
"publisher": "tal7aouy",
"author": {
"name": "MHAMMED TALHAOUY",
"email": "tal7aouy@gmail.com",
"url": "https:/talhaouy.me"
},
"repository": {
"type": "git",
"url": "https://github.com/tal7aouy/theme"
},
"galleryBanner": {
"color": "#282c34",
"theme": "dark"
},
"sponsor": {
"url": "https://ko-fi.com/tal7aouy"
},
"scripts": {
"prepare": "husky install",
"package": "mkdir -p ./theme && vsce package -o ./theme/theme.vsix",
"vscode:prepublish": "npm run build:fetch",
"vsce-publish": "vsce publish",
"postinstall": "npm run fetch:reference",
"dev": "DEBUG_VSCODE=1 ts-node-dev -r tsconfig-paths/register ./src/index.ts",
"exec:file": "ts-node -r tsconfig-paths/register",
"build": "npm run exec:file ./src/index.ts",
"build:fetch": "npm run fetch:reference && npm run build",
"fetch:reference": "npm run exec:file ./src/scripts/fetch-theme-colors-reference",
"prettier:format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts"
},
"nodemonConfig": {
"ext": "ts",
"exec": "ts-node src/index.ts"
},
"bugs": {
"url": "https://github.com/tal7aouy/theme/issues"
},
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Themes",
"Other"
],
"icon": "logo.png",
"keywords": [
"Theme",
"Dark Theme",
"Customize",
"Professional",
"One Theme",
"One Dark"
],
"contributes": {
"themes": [
{
"label": "Theme",
"uiTheme": "vs-dark",
"path": "./themes/Theme.json"
},
{
"label": "Theme Flat",
"uiTheme": "vs-dark",
"path": "./themes/ThemeFlat.json"
},{
"label": "Theme Mix",
"uiTheme": "vs-dark",
"path": "./themes/ThemeMix.json"
},
{
"label": "Theme Darker",
"uiTheme": "vs-dark",
"path": "./themes/ThemeDarker.json"
}
]
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/to-json-schema": "^0.2.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.4.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"husky": "^7.0.4",
"json-schema-to-typescript": "^10.1.5",
"lint-staged": "^12.3.4",
"prettier": "^2.5.1",
"to-json-schema": "^0.2.5",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.5",
"vsce": "^2.6.7"
},
"badges": [
{
"url": "https://vsmarketplacebadges.dev/version/tal7aouy.theme.png",
"href": "https://marketplace.visualstudio.com/items/tal7aouy.theme",
"description": "Extension version"
},
{
"url": "https://vsmarketplacebadges.dev/installs/tal7aouy.theme.png",
"href": "https://marketplace.visualstudio.com/items/tal7aouy.theme",
"description": "Extension installs"
},
{
"url": "https://vsmarketplacebadges.dev/rating/tal7aouy.theme.png",
"href": "https://marketplace.visualstudio.com/items/tal7aouy.theme",
"description": "Extension Rating"
}
]
}