mirror of
https://github.com/larksuite/cli.git
synced 2026-07-06 16:18:05 +08:00
This release prep captures the version bump and changelog entry for v1.0.12 without pulling unrelated workspace edits into the release branch. Change-Id: Ib343337c4851b7cc15a52dd0068795a92092b781 Constraint: Keep the release PR scoped to package version and changelog only Rejected: Include .gitignore and local workspace files | unrelated to this release PR Confidence: high Scope-risk: narrow Reversibility: clean Directive: Keep release notes aligned with shipped changes only; exclude reverted work from summaries Tested: make unit-test Tested: go mod tidy Tested: go run github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.1.6 run --new-from-rev=origin/main Not-tested: Manual tag/release publishing flow
38 lines
657 B
JSON
38 lines
657 B
JSON
{
|
|
"name": "@larksuite/cli",
|
|
"version": "1.0.12",
|
|
"description": "The official CLI for Lark/Feishu open platform",
|
|
"bin": {
|
|
"lark-cli": "scripts/run.js"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "node scripts/install.js"
|
|
},
|
|
"os": [
|
|
"darwin",
|
|
"linux",
|
|
"win32"
|
|
],
|
|
"cpu": [
|
|
"x64",
|
|
"arm64"
|
|
],
|
|
"engines": {
|
|
"node": ">=16"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/larksuite/cli.git"
|
|
},
|
|
"license": "MIT",
|
|
"files": [
|
|
"scripts/install.js",
|
|
"scripts/install-wizard.js",
|
|
"scripts/run.js",
|
|
"CHANGELOG.md"
|
|
],
|
|
"dependencies": {
|
|
"@clack/prompts": "^1.2.0"
|
|
}
|
|
}
|