forked from catppuccin/vscode-icons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.21 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
{
"publisher": "Catppuccin",
"name": "catppuccin-vsc-icons",
"displayName": "Catppuccin Icons for VSCode",
"type": "module",
"version": "0.21.0",
"description": "🦌 Soothing pastel icon theme for VSCode",
"author": "prazdevs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/catppuccin/vscode-icons"
},
"keywords": [
"catppuccin",
"theme",
"fancy",
"pastel-colors",
"vscode",
"vscode-theme",
"vscode-icons",
"vscode-extension"
],
"categories": [
"Themes"
],
"icon": "logo.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.69.0"
},
"contributes": {
"iconThemes": [
{
"id": "catppuccin-mocha",
"label": "Catppuccin Mocha",
"path": "themes/mocha/theme.json"
},
{
"id": "catppuccin-latte",
"label": "Catppuccin Latte",
"path": "themes/latte/theme.json"
},
{
"id": "catppuccin-frappe",
"label": "Catppuccin Frappé",
"path": "themes/frappe/theme.json"
},
{
"id": "catppuccin-macchiato",
"label": "Catppuccin Macchiato",
"path": "themes/macchiato/theme.json"
}
]
},
"scripts": {
"build": "yarn build:themes && yarn build:preview",
"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"
}
}