mirror of
https://github.com/jonasrafa/kunkun-ext-on-this-day.git
synced 2025-04-03 17:56:43 +00:00
Update package.json to include author, repository details, and demo images; remove clipboard permission.
This commit is contained in:
parent
884c5cc0ee
commit
6c1821b37d
24
.github/workflows/npm-publish.yml
vendored
Normal file
24
.github/workflows/npm-publish.yml
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
name: NPM Package Publish
|
||||
|
||||
on:
|
||||
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: "20.x"
|
||||
registry-url: "https://registry.npmjs.org"
|
||||
- run: bun install
|
||||
- run: bun run build
|
||||
- name: Publish to NPM
|
||||
run: npm publish --provenance --access public
|
||||
env:
|
||||
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
|
13
package.json
13
package.json
@ -4,16 +4,23 @@
|
||||
"version": "0.0.10",
|
||||
"license": "MIT",
|
||||
"type": "module",
|
||||
"author": "Jonas Almeida",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jonasrafa/kunkun-ext-on-this-day"
|
||||
},
|
||||
"kunkun": {
|
||||
"name": "What Happened Today",
|
||||
"shortDescription": "Get the historical events that happened on this day.",
|
||||
"longDescription": "Discover historical events, notable birthdays, and milestones on any date.",
|
||||
"identifier": "kunkun-ext-on-this-day",
|
||||
"permissions": [
|
||||
"fetch:all",
|
||||
"clipboard:read-all"
|
||||
"fetch:all"
|
||||
],
|
||||
"demoImages": [
|
||||
"https://raw.githubusercontent.com/jonasrafa/kunkun-ext-on-this-day/refs/heads/main/public/screenshot1.jpg",
|
||||
"https://raw.githubusercontent.com/jonasrafa/kunkun-ext-on-this-day/refs/heads/main/public/screenshot2.jpg"
|
||||
],
|
||||
"demoImages": [],
|
||||
"icon": {
|
||||
"type": "iconify",
|
||||
"value": "material-symbols:history-rounded"
|
||||
|
Loading…
x
Reference in New Issue
Block a user