mirror of
https://github.com/mark3labs/kit.git
synced 2026-06-14 03:30:26 +00:00
f6ddd0b785
- 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
42 lines
653 B
JSON
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"
|
|
]
|
|
}
|