-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (91 loc) · 2.13 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
{
"name": "nord-plus-theme",
"displayName": "Nord+",
"description": "A theme based on Nord, with syntax highlighting by One Dark Pro for better code readability",
"version": "1.0.0",
"publisher": "Yeasir H.",
"author": {
"name": "Yeasir H.",
"url": "https://www.yeasirhugais.com"
},
"homepage": "https://github.com/yeasir01/nord-plus-theme",
"repository": {
"type": "git",
"url": "https://github.com/yeasir01/nord-plus-theme"
},
"bugs": {
"url": "https://github.com/yeasir01/nord-plus-theme/issues"
},
"license": "MIT",
"engines": {
"node": ">=15.13",
"npm": ">=7.7",
"vscode": "^1.12.0"
},
"galleryBanner": {
"color": "#2E3440",
"theme": "dark"
},
"icon": "assets/nord-plus-icon.png",
"markdown": "github",
"categories": [
"Themes"
],
"keywords": [
"arctic",
"north",
"bluish",
"clean",
"elegant",
"one dark",
"onedark",
"one dark pro",
"onedark pro",
"theme",
"atom"
],
"badges": [
],
"contributes": {
"themes": [
{
"label": "Nord+",
"uiTheme": "vs-dark",
"path": "./themes/nord-plus-theme.json"
}
]
},
"scripts": {
"build": "run-s clean package",
"clean": "del *.vsix",
"format": "run-s format:pretty format:fix",
"format:fix": "eslint --fix --ext .js,.json .",
"format:pretty": "prettier --write .",
"lint": "run-s lint:*",
"lint:ci:pretty": "prettier --loglevel silent --check .",
"lint:js": "eslint --ext .",
"lint:json": "eslint --ext .json .",
"lint:md": "remark --no-stdout . \".github/**/*.md\"",
"package": "vsce package",
"vsce:publish": "vsce publish",
"prepare:husky": "husky install",
"prepare": "run-s prepare:*"
},
"devDependencies": {
"@arcticicestudio/eslint-config-base": ">=0.11.0 <1.0.0",
"@arcticicestudio/remark-preset-lint": ">=0.4.0 <1.0.0",
"@babel/eslint-parser": "^7.15.7",
"del-cli": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsonc": "^1.7.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"remark-cli": "^9.0.0",
"vsce": "^1.100.0"
}
}