Initial commit

This commit is contained in:
2025-08-31 18:20:24 -07:00
committed by GitHub
commit 55d5540fe5
5 changed files with 44 additions and 0 deletions

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

@@ -0,0 +1,15 @@
on:
workflow_dispatch:
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
registry-url: 'https://registry.npmjs.org'
- run: npm ci || npm install
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

21
.gitignore vendored Normal file
View File

@@ -0,0 +1,21 @@
package-lock.json
# Dependencies
node_modules/
# Build artifacts
*.tgz
dist/
# Environment variables
.env
.env.local
# OS generated files
.DS_Store
Thumbs.db
# IDE files
.vscode/
.idea/
*.swp
*.swo

1
index.js Normal file
View File

@@ -0,0 +1 @@

6
package.json Normal file
View File

@@ -0,0 +1,6 @@
{
"name": "",
"version": "0.1.0",
"main": "index.js"
}

1
readme.md Normal file
View File

@@ -0,0 +1 @@