mirror of
https://github.com/catppuccin/vscode-icons.git
synced 2026-01-09 05:31:03 +08:00
160 lines
4.3 KiB
JSON
160 lines
4.3 KiB
JSON
{
|
|
"publisher": "Catppuccin",
|
|
"name": "catppuccin-vsc-icons",
|
|
"displayName": "Catppuccin Icons for VSCode",
|
|
"type": "module",
|
|
"version": "1.24.0",
|
|
"private": true,
|
|
"packageManager": "pnpm@10.18.2",
|
|
"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:.*/'",
|
|
"previews": "npx puppeteer browsers install chrome && pnpm run icons:preview && pnpm run catwalk",
|
|
"integrity": "tsx scripts/integrity.ts",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"release": "changelogen --release",
|
|
"typecheck": "tsc"
|
|
},
|
|
"devDependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@antfu/eslint-config": "^5.4.1",
|
|
"@catppuccin/palette": "^1.7.1",
|
|
"@iconify/tools": "^4.1.4",
|
|
"@types/node": "^24.7.2",
|
|
"@types/vscode": "1.83.0",
|
|
"@vscode/vsce": "^3.6.2",
|
|
"changelogen": "^0.6.2",
|
|
"consola": "^3.4.2",
|
|
"defu": "^6.1.4",
|
|
"eslint": "^9.37.0",
|
|
"lint-staged": "^16.2.4",
|
|
"lookpath": "^1.2.3",
|
|
"puppeteer": "^24.24.0",
|
|
"simple-git-hooks": "^2.13.1",
|
|
"tsup": "^8.5.0",
|
|
"tsx": "^4.20.6",
|
|
"typescript": "^5.9.3"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*": "eslint --fix"
|
|
}
|
|
}
|