-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.19 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.19 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
{
"name": "honolulu-vscode-theme",
"displayName": "Honolulu Theme",
"version": "2.9.2",
"private": true,
"release": {
"branches": [
"main"
]
},
"description": "Sunset in honolulu theme for VS Code",
"categories": [
"Themes"
],
"keywords": [
"vscode theme",
"theme",
"dark theme",
"dark",
"honolulu theme",
"honolulu",
"honolulu midnight",
"purple",
"pink",
"orange",
"jetbrains",
"fleet"
],
"scripts": {
"init:project": "npm i && npx husky install",
"build:theme": "tsc && node ./dist/src/index.js",
"lint:eslint": "npx eslint src --fix",
"lint:prettier": "npx prettier -w src"
},
"homepage": "https://marketplace.visualstudio.com/items?itemName=flameappstudio.honolulu-vscode-theme",
"repository": {
"type": "git",
"url": "https://github.com/flame-app-studio/honolulu_vscode_theme"
},
"bugs": {
"url": "https://github.com/flame-app-studio/honolulu_vscode_theme/issues"
},
"publisher": "flameappstudio",
"author": "Jean-Baptiste THERY <jb.thery@flameapp.studio> ",
"license": "MIT",
"contributors": [
{
"name": "Jean-Baptiste Thery",
"email": "jb.thery@flameapp.fr",
"url": "https://flameapp.studio"
},
{
"name": "Sandra Sain-Julien",
"email": "sandra.saint.julien@gmail.com"
}
],
"contributes": {
"themes": [
{
"label": "Honolulu Theme",
"uiTheme": "vs-dark",
"path": "./themes/honolulu-vscode-theme.json"
}
]
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/node": "^18.11.17",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.6.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.2",
"prettier": "2.8.1",
"semantic-release": "^19.0.5",
"typescript": "^4.9.4"
},
"icon": "honolulu-vscode-theme-logo.png",
"galleryBanner": {
"color": "#191919",
"theme": "dark"
},
"engines": {
"vscode": "^1.71.0"
}
}