-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
96 lines (96 loc) · 2.09 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
{
"name": "rose-pine",
"version": "2.12.1",
"publisher": "mvllow",
"description": "All natural pine, faux fur and a bit of soho vibes for the classy minimalist",
"license": "MIT",
"repository": {
"url": "https://github.com/rose-pine/vscode"
},
"funding": "https://github.com/rose-pine/vscode?sponsor=1",
"sponsor": {
"url": "https://github.com/rose-pine/vscode?sponsor=1"
},
"author": {
"name": "Rosé Pine",
"email": "[email protected]"
},
"type": "module",
"engines": {
"vscode": "^1.57.0"
},
"scripts": {
"build": "pinecone && npm run format",
"watch": "pinecone --watch",
"format": "prettier --write .",
"release": "npx np@latest --no-publish --no-tests",
"version": "npm run build && npm run format"
},
"icon": "assets/icon.png",
"displayName": "Rosé Pine",
"categories": [
"Themes"
],
"keywords": [
"minimal",
"aesthetic",
"pastel",
"classy",
"soft"
],
"galleryBanner": {
"color": "#191724",
"theme": "dark"
},
"contributes": {
"iconThemes": [
{
"id": "rose-pine-icons",
"label": "Rosé Pine Icons",
"path": "./icons/rose-pine-icon-theme.json"
}
],
"themes": [
{
"label": "Rosé Pine",
"uiTheme": "vs-dark",
"path": "./themes/rose-pine-color-theme.json"
},
{
"label": "Rosé Pine (no italics)",
"uiTheme": "vs-dark",
"path": "./themes/rose-pine-no-italics-color-theme.json"
},
{
"label": "Rosé Pine Moon",
"uiTheme": "vs-dark",
"path": "./themes/rose-pine-moon-color-theme.json"
},
{
"label": "Rosé Pine Moon (no italics)",
"uiTheme": "vs-dark",
"path": "./themes/rose-pine-moon-no-italics-color-theme.json"
},
{
"label": "Rosé Pine Dawn",
"uiTheme": "vs",
"path": "./themes/rose-pine-dawn-color-theme.json"
},
{
"label": "Rosé Pine Dawn (no italics)",
"uiTheme": "vs",
"path": "./themes/rose-pine-dawn-no-italics-color-theme.json"
}
]
},
"devDependencies": {
"@rose-pine/palette": "3.0.1",
"pinecone-cli": "^4.0.1",
"prettier": "^2.8.7"
},
"prettier": {
"semi": false,
"singleQuote": true,
"useTabs": true
}
}