From fa3f5f7f250f988e1862416aefb3307a84c1c074 Mon Sep 17 00:00:00 2001 From: Antoine Gonthier Date: Sat, 15 Jul 2023 08:04:44 +0200 Subject: [PATCH] :package: add package file --- package.json | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 0000000..addab83 --- /dev/null +++ b/package.json @@ -0,0 +1,35 @@ +{ + "name": "flutter-icons", + "displayName": "Flutter Icons", + "description": "A Flutter icon theme for vscode", + "version": "1.0.1", + "license": "MIT", + "engines": { + "vscode": "^1.52.0" + }, + "categories": [ + "Themes" + ], + "publisher": "AntoineGtr", + "repository": { + "url": "https://github.com/Antoinegtir/flutter-icons", + "type": "git" + }, + "icon": "icons/logo.png", + "galleryBanner": { + "color": "#23292e", + "theme": "dark" + }, + "contributes": { + "iconThemes": [ + { + "id": "theme", + "label": "Flutter Icons", + "path": "./theme.json" + } + ] + }, + "devDependencies": { + "vsce": "^2.9.2" + } +}