FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
visual-studio-code/package.json at develop · nordtheme/visual-studio-code · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nordtheme
/
visual-studio-code
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
90
Star
1.1k
Code
Issues
19
Pull requests
7
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
visual-studio-code
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
109 lines (109 loc) · 3.38 KB
Breadcrumbs
visual-studio-code
/
package.json
Copy path
File metadata and controls
109 lines (109 loc) · 3.38 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
{
"name"
:
"
nord-visual-studio-code
"
,
"displayName"
:
"
Nord
"
,
"description"
:
"
An arctic, north-bluish clean and elegant Visual Studio Code theme.
"
,
"version"
:
"
0.19.0
"
,
"publisher"
:
"
arcticicestudio
"
,
"author"
: {
"name"
:
"
Sven Greb
"
,
"email"
:
"
development@svengreb.de
"
,
"url"
:
"
https://www.svengreb.de
"
},
"homepage"
:
"
https://github.com/nordtheme/visual-studio-code
"
,
"repository"
: {
"type"
:
"
git
"
,
"url"
:
"
https://github.com/nordtheme/visual-studio-code
"
},
"bugs"
: {
"url"
:
"
https://github.com/nordtheme/visual-studio-code/issues
"
},
"license"
:
"
MIT
"
,
"engines"
: {
"node"
:
"
>=15.13
"
,
"npm"
:
"
>=7.7
"
,
"vscode"
:
"
^1.12.0
"
},
"galleryBanner"
: {
"color"
:
"
#2E3440
"
,
"theme"
:
"
dark
"
},
"icon"
:
"
assets/extension-marketplace-icon.png
"
,
"markdown"
:
"
github
"
,
"categories"
: [
"
Themes
"
],
"keywords"
: [
"
arctic
"
,
"
north
"
,
"
bluish
"
,
"
clean
"
,
"
elegant
"
],
"badges"
: [
{
"url"
:
"
https://vsmarketplacebadge.apphb.com/version/arcticicestudio.nord-visual-studio-code.svg
"
,
"href"
:
"
https://marketplace.visualstudio.com/items/arcticicestudio.nord-visual-studio-code
"
,
"description"
:
"
Extension version
"
},
{
"url"
:
"
https://vsmarketplacebadge.apphb.com/installs/arcticicestudio.nord-visual-studio-code.svg
"
,
"href"
:
"
https://marketplace.visualstudio.com/items/arcticicestudio.nord-visual-studio-code
"
,
"description"
:
"
Extension installs
"
},
{
"url"
:
"
https://vsmarketplacebadge.apphb.com/rating/arcticicestudio.nord-visual-studio-code.svg
"
,
"href"
:
"
https://marketplace.visualstudio.com/items/arcticicestudio.nord-visual-studio-code
"
,
"description"
:
"
Extension Rating
"
}
],
"contributes"
: {
"themes"
: [
{
"label"
:
"
Nord
"
,
"uiTheme"
:
"
vs-dark
"
,
"path"
:
"
./themes/nord-color-theme.json
"
}
]
},
"scripts"
: {
"build"
:
"
run-s clean package
"
,
"clean"
:
"
del *.vsix
"
,
"format"
:
"
run-s format:*
"
,
"format:js"
:
"
eslint --fix .
"
,
"format:pretty"
:
"
prettier --ignore-unknown --no-editorconfig --write
\"
**
\"
"
,
"lint"
:
"
run-s lint:js lint:md
"
,
"lint:ci"
:
"
run-s --continue-on-error lint lint:ci:pretty
"
,
"lint:ci:pretty"
:
"
prettier --check --ignore-unknown --loglevel silent --no-editorconfig --no-error-on-unmatched-pattern
\"
**
\"
"
,
"lint:js"
:
"
eslint .
"
,
"lint:md"
:
"
remark --no-stdout . .github/
"
,
"lint:pretty"
:
"
prettier --check --ignore-unknown --no-editorconfig
\"
**
\"
"
,
"package"
:
"
vsce package
"
,
"prepare"
:
"
run-s prepare:*
"
,
"prepare:husky"
:
"
husky install
"
,
"publish:ovsx"
:
"
ovsx publish --pat
"
,
"publish:vsce"
:
"
vsce publish
"
,
"publish"
:
"
run-s publish:vsce publish:ovsx
"
},
"devDependencies"
: {
"@svengreb/eslint-config-base"
:
"
>=0.12.0 <1.0.0
"
,
"@svengreb/remark-preset-lint"
:
"
>=0.5.0 <1.0.0
"
,
"del-cli"
:
"
5.0.0
"
,
"eslint"
:
"
8.39.0
"
,
"eslint-config-prettier"
:
"
8.8.0
"
,
"eslint-plugin-import"
:
"
2.27.5
"
,
"eslint-plugin-prettier"
:
"
4.2.1
"
,
"husky"
:
"
8.0.3
"
,
"lint-staged"
:
"
13.2.2
"
,
"npm-run-all"
:
"
4.1.5
"
,
"ovsx"
:
"
0.8.0
"
,
"prettier"
:
"
2.8.8
"
,
"prettier-plugin-sh"
:
"
0.12.8
"
,
"remark-cli"
:
"
11.0.0
"
,
"vsce"
:
"
2.15.0
"
},
"__metadata"
: {
"id"
:
"
6f35c257-7fd5-4bc2-9cd1-01976589c17a
"
,
"publisherDisplayName"
:
"
arcticicestudio
"
,
"publisherId"
:
"
d6e09771-ef61-4944-9f28-44e338818618
"
}
}
Back
|
FazBrowse Home
|
New Git URL