chore: update package version to 0.0.10, enhance README with package links, and add demo image

This commit is contained in:
Huakun Shen 2025-01-18 22:13:19 -05:00
parent d6ade9fca6
commit 0383dffa41
No known key found for this signature in database
3 changed files with 81 additions and 80 deletions

View File

@ -1,5 +1,6 @@
# Vue 3 + TypeScript + Vite # Kunkun Extension Git Skyline
This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 `<script setup>` SFCs, check out the [script setup docs](https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup) to learn more. - NPM Package: https://www.npmjs.com/package/kunkun-ext-git-skyline
- Store: https://kunkun.sh/store/git-skyline
Learn more about the recommended Project Setup and IDE Support in the [Vue Docs TypeScript Guide](https://vuejs.org/guide/typescript/overview.html#project-setup). ![](./demo/transparent.png)

BIN
demo/transparent.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 MiB

View File

@ -1,79 +1,79 @@
{ {
"$schema": "https://schema.kunkun.sh/", "$schema": "https://schema.kunkun.sh/",
"name": "kunkun-ext-git-skyline", "name": "kunkun-ext-git-skyline",
"repository": "https://github.com/kunkunsh/kunkun-ext-git-skyline", "license": "MIT",
"private": false, "repository": "https://github.com/kunkunsh/kunkun-ext-git-skyline",
"version": "0.0.9", "version": "0.0.10",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"build": "vue-tsc -b && vite build", "build": "vue-tsc -b && vite build",
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@kksh/api": "^0.0.48", "@kksh/api": "^0.0.48",
"@kksh/vue": "0.1.4", "@kksh/vue": "0.1.4",
"@radix-icons/vue": "^1.0.0", "@radix-icons/vue": "^1.0.0",
"class-variance-authority": "^0.7.0", "class-variance-authority": "^0.7.0",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"radix-vue": "^1.9.2", "radix-vue": "^1.9.2",
"tailwind-merge": "^2.4.0", "tailwind-merge": "^2.4.0",
"tailwindcss-animate": "^1.0.7", "tailwindcss-animate": "^1.0.7",
"vue": "^3.4.31", "vue": "^3.4.31",
"zod": "^3.23.8" "zod": "^3.23.8"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20.14.12", "@types/node": "^20.14.12",
"@vitejs/plugin-vue": "^5.0.5", "@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.19", "autoprefixer": "^10.4.19",
"postcss": "^8.4.38", "postcss": "^8.4.38",
"tailwindcss": "^3.4.6", "tailwindcss": "^3.4.6",
"typescript": "^5.2.2", "typescript": "^5.2.2",
"vite": "^5.3.4", "vite": "^5.3.4",
"vue-tsc": "^2.0.24" "vue-tsc": "^2.0.24"
}, },
"kunkun": { "kunkun": {
"name": "Git Skyline", "name": "Git Skyline",
"shortDescription": "Display your 3D GitHub Skyline", "shortDescription": "Display your 3D GitHub Skyline",
"longDescription": "Display your 3D GitHub Skyline from https://git-skyline.huakun.tech", "longDescription": "Display your 3D GitHub Skyline from https://git-skyline.huakun.tech",
"identifier": "git-skyline", "identifier": "git-skyline",
"icon": { "icon": {
"type": "iconify", "type": "iconify",
"value": "tabler:building-skyscraper" "value": "tabler:building-skyscraper"
}, },
"demoImages": [], "demoImages": [],
"permissions": [ "permissions": [
"clipboard:read-all" "clipboard:read-all"
], ],
"customUiCmds": [ "customUiCmds": [
{ {
"main": "/", "main": "/",
"dist": "dist", "dist": "dist",
"devMain": "http://localhost:5173", "devMain": "http://localhost:5173",
"name": "Transparent Git Skyline", "name": "Transparent Git Skyline",
"cmds": [], "cmds": [],
"window": { "window": {
"title": "", "title": "",
"transparent": true, "transparent": true,
"hiddenTitle": true, "hiddenTitle": true,
"decorations": false "decorations": false
} }
}, },
{ {
"main": "https://git-skyline.huakun.tech", "main": "https://git-skyline.huakun.tech",
"dist": "dist", "dist": "dist",
"devMain": "https://git-skyline.huakun.tech", "devMain": "https://git-skyline.huakun.tech",
"name": "Git Skyline", "name": "Git Skyline",
"cmds": [], "cmds": [],
"window": { "window": {
"title": "GitHub Contribution" "title": "GitHub Contribution"
} }
} }
], ],
"templateUiCmds": [] "templateUiCmds": []
}, },
"files": [ "files": [
"dist" "dist"
], ],
"packageManager": "pnpm@9.9.0" "packageManager": "pnpm@9.9.0"
} }