-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
159 lines (159 loc) · 4.24 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"publisher": "Catppuccin",
"name": "catppuccin-vsc-icons",
"displayName": "Catppuccin Icons for VSCode",
"type": "module",
"version": "1.17.0",
"private": true,
"packageManager": "[email protected]",
"description": "🦊 Soothing pastel icon theme for VSCode",
"author": "prazdevs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/catppuccin/vscode-icons"
},
"bugs": {
"url": "https://github.com/catppuccin/vscode-icons/issues"
},
"sponsor": {
"url": "https://opencollective.com/catppuccin"
},
"keywords": [
"catppuccin",
"theme",
"fancy",
"pastel-colors",
"vscode",
"vscode-theme",
"vscode-icons",
"vscode-extension"
],
"categories": [
"Themes"
],
"main": "dist/main.cjs",
"browser": "dist/browser.cjs",
"icon": "assets/icon.png",
"extensionKind": [
"ui",
"workspace"
],
"engines": {
"vscode": "^1.83.0",
"node": ">=20.0.0"
},
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"title": "Catppuccin Icons",
"properties": {
"catppuccin-icons.hidesExplorerArrows": {
"type": "boolean",
"default": false,
"description": "Hides arrows next to folders in the explorer."
},
"catppuccin-icons.specificFolders": {
"type": "boolean",
"default": true,
"description": "Display specific folder icons. Disable to only use default folder icon."
},
"catppuccin-icons.monochrome": {
"type": "boolean",
"default": false,
"description": "Only use Text color for icons."
},
"catppuccin-icons.associations.languages": {
"type": "object",
"default": {},
"description": "Custom languageId/icon associations."
},
"catppuccin-icons.associations.extensions": {
"type": "object",
"default": {},
"description": "Custom fileExtension/icon associations."
},
"catppuccin-icons.associations.files": {
"type": "object",
"default": {},
"description": "Custom fileName/icon associations."
},
"catppuccin-icons.associations.folders": {
"type": "object",
"default": {},
"description": "Custom folderName/icon associations."
}
}
},
"commands": [
{
"command": "catppuccin-icons.reset",
"title": "Catppuccin Icons: Factory reset settings"
}
],
"iconThemes": [
{
"id": "catppuccin-mocha",
"label": "Catppuccin Mocha",
"path": "./dist/mocha/theme.json"
},
{
"id": "catppuccin-latte",
"label": "Catppuccin Latte",
"path": "./dist/latte/theme.json"
},
{
"id": "catppuccin-frappe",
"label": "Catppuccin Frappé",
"path": "./dist/frappe/theme.json"
},
{
"id": "catppuccin-macchiato",
"label": "Catppuccin Macchiato",
"path": "./dist/macchiato/theme.json"
}
]
},
"scripts": {
"build": "tsx scripts/build.ts",
"catwalk": "tsx scripts/catwalk.ts",
"icons:generate": "tsx scripts/icons/generate.ts",
"icons:optimize": "tsx scripts/icons/optimize.ts",
"icons:preview": "tsx scripts/icons/preview.ts",
"icons": "pnpm run --sequential '/^icons:.*/'",
"integrity": "tsx scripts/integrity.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pack": "vsce package --no-dependencies",
"release": "changelogen --release --push",
"typecheck": "tsc",
"vscode:prepublish": "pnpm build"
},
"devDependencies": {
"@antfu/eslint-config": "^3.7.1",
"@catppuccin/palette": "^1.4.0",
"@iconify/tools": "^4.0.6",
"@types/node": "^22.7.0",
"@types/vscode": "1.83.0",
"@vscode/vsce": "^3.1.0",
"changelogen": "^0.5.7",
"consola": "^3.2.3",
"defu": "^6.1.4",
"eslint": "^9.11.1",
"lint-staged": "^15.2.10",
"lookpath": "^1.2.2",
"puppeteer": "^23.0.0",
"simple-git-hooks": "^2.11.1",
"tsup": "^8.3.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}