forked from catppuccin/vscode-icons
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
130 lines (130 loc) · 3.42 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
124
125
126
127
128
129
130
{
"publisher": "thang-nm",
"name": "catppuccin-perfect-icons",
"displayName": "Catppuccin Perfect Icons",
"type": "module",
"version": "0.21.32",
"description": "🌈 Unofficial. Pixel perfect + more icons + new palettes",
"author": "thang-nm",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thang-nm/Catppuccin-Perfect-Icons"
},
"keywords": [
"catppuccin",
"theme",
"fancy",
"pastel-colors",
"perfect",
"pixel perfect",
"perfect pixel",
"line icons",
"aura",
"ayu",
"dracula",
"monokai",
"sequoia",
"vscode",
"vscode-theme",
"vscode-icons",
"vscode-extension"
],
"categories": [
"Themes"
],
"icon": "logo.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.69.0"
},
"contributes": {
"iconThemes": [
{
"id": "catppuccin-perfect-mocha",
"label": "Catppuccin Perfect Mocha",
"path": "themes/mocha/theme.json"
},
{
"id": "catppuccin-perfect-latte",
"label": "Catppuccin Perfect Latte",
"path": "themes/latte/theme.json"
},
{
"id": "catppuccin-perfect-frappe",
"label": "Catppuccin Perfect Frappé",
"path": "themes/frappe/theme.json"
},
{
"id": "catppuccin-perfect-macchiato",
"label": "Catppuccin Perfect Macchiato",
"path": "themes/macchiato/theme.json"
},
{
"id": "catppuccin-perfect-aura",
"label": "Catppuccin Perfect Aura",
"path": "themes/aura/theme.json"
},
{
"id": "catppuccin-perfect-ayu",
"label": "Catppuccin Perfect Ayu",
"path": "themes/ayu/theme.json"
},
{
"id": "catppuccin-perfect-dracula",
"label": "Catppuccin Perfect Dracula",
"path": "themes/dracula/theme.json"
},
{
"id": "catppuccin-perfect-monokai",
"label": "Catppuccin Perfect Monokai",
"path": "themes/monokai/theme.json"
},
{
"id": "catppuccin-perfect-sequoia",
"label": "Catppuccin Perfect Sequoia",
"path": "themes/sequoia/theme.json"
},
{
"id": "catppuccin-perfect-dark",
"label": "Catppuccin Perfect Dark",
"path": "themes/dark/theme.json"
}
]
},
"scripts": {
"build": "yarn build:icons -a && yarn build:themes && yarn build:preview && yarn package",
"build:dev": "yarn build:icons -a && yarn build:themes && yarn package",
"build:icons": "tsx scripts/icons.ts",
"build:themes": "tsx scripts/themes.ts",
"build:preview": "tsx scripts/preview.ts",
"catwalk": "tsx scripts/catwalk.ts",
"dev": "chokidar \"src/**/*\" -c \"yarn build\"",
"integrity": "tsx scripts/integrity.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"package": "vsce package --no-dependencies -o dist",
"release": "bumpp -t \"v%s\" -c \"chore: release v\""
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.6",
"@catppuccin/palette": "^0.1.8",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.16.5",
"@vscode/vsce": "^2.19.0",
"bumpp": "^9.1.0",
"chokidar-cli": "^3.0.0",
"colorsea": "^1.2.1",
"consola": "^3.1.0",
"eslint": "^8.40.0",
"fs-extra": "^11.1.1",
"pathe": "^1.1.0",
"puppeteer": "^20.1.2",
"scule": "^1.0.0",
"svgo": "^3.0.2",
"tsx": "^3.12.7",
"typescript": "^5.0.4"
}
}