Prepare for initial npm package release

- Add repository information to package.json
- Update version to 0.0.1
- Add README screenshot
- Create GitHub Actions workflow for npm publishing
This commit is contained in:
Huakun Shen 2025-02-26 09:19:33 -05:00
parent 123a414f9a
commit 5ca3de95c5
No known key found for this signature in database
3 changed files with 43 additions and 1 deletions

36
.github/workflows/npm-publish.yml vendored Normal file
View File

@ -0,0 +1,36 @@
name: NPM Package Publish
on:
push:
branches: [main]
release:
types: [created]
workflow_dispatch:
jobs:
publish-npm:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- uses: actions/setup-node@v4
with:
node-version: "22.x"
registry-url: "https://registry.npmjs.org"
- run: bun install
- run: bun run build
- name: Check if version is already published
run: |
PACKAGE_VERSION=$(node -p "require('./package.json').version")
PACKAGE_NAME=$(jq -r '.name' package.json)
npm view $PACKAGE_NAME@$PACKAGE_VERSION
continue-on-error: true
id: check_version
- name: Publish
if: steps.check_version.outcome != 'success'
run: npm publish --provenance --access public
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

View File

@ -3,3 +3,5 @@
## Features
- Open recent zed projects
![](https://i.imgur.com/6SpxvDO.png)

View File

@ -1,9 +1,13 @@
{
"$schema": "https://schema.kunkun.sh",
"name": "kunkun-ext-zed",
"version": "0.0.10",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/kunkunsh/kunkun-ext-zed"
},
"kunkun": {
"name": "Zed Recent Projects",
"shortDescription": "Open Zed Recent Projects",