Files
kit/npm/package.json
Ed Zynda f6ddd0b785 ci: add lint job, npm publish pipeline, and update goreleaser config
- CI: add golangci-lint job, target master branch, use Go 1.26
- Release: add workflow_dispatch for npm-only releases, Discord
  notifications, and npm-publish job for @mark3labs/kit
- Goreleaser: upgrade to v2 schema, lowercase archive names,
  structured changelog groups, release header with install instructions
- npm: add package scaffolding with postinstall binary downloader
2026-02-27 18:27:06 +03:00

42 lines
653 B
JSON

{
"name": "@mark3labs/kit",
"version": "0.0.0",
"description": "AI-powered CLI tool",
"repository": {
"type": "git",
"url": "git+https://github.com/mark3labs/kit.git"
},
"homepage": "https://github.com/mark3labs/kit",
"bugs": {
"url": "https://github.com/mark3labs/kit/issues"
},
"license": "MIT",
"bin": {
"kit": "bin/kit"
},
"scripts": {
"postinstall": "node install.js"
},
"files": [
"bin",
"install.js"
],
"engines": {
"node": ">=16"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"keywords": [
"cli",
"kit",
"ai"
]
}