-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 2.27 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"name": "rust-cli",
"version": "1.2.0",
"private": true,
"description": "Document-first Skill package for scaffolding, validating, and extending Rust-based CLI Skills.",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/byteland-app/rust-cli-skill.git"
},
"engines": {
"node": "22.x",
"npm": "10.x"
},
"scripts": {
"prepare": "husky",
"format": "prettier --ignore-unknown --write .commitlintrc.cjs .gitignore .npmignore .prettierignore .prettierrc.json .releaserc.json AGENTS.md CHANGELOG.md README.md SKILL.md constitution.md .github/workflows/release.yml package.json \".husky/*\" \"docs/release/**/*.md\" \"instructions/**/*.md\" \"release/**/*.{json,md}\" \"scripts/release/**/*.mjs\" \"stages/**/*.md\"",
"format:check": "prettier --ignore-unknown --check .commitlintrc.cjs .gitignore .npmignore .prettierignore .prettierrc.json .releaserc.json AGENTS.md CHANGELOG.md README.md SKILL.md constitution.md .github/workflows/release.yml package.json \".husky/*\" \"docs/release/**/*.md\" \"instructions/**/*.md\" \"release/**/*.{json,md}\" \"scripts/release/**/*.mjs\" \"stages/**/*.md\"",
"lint-staged": "lint-staged",
"commitlint": "commitlint --from HEAD~1 --to HEAD --verbose",
"commitlint:edit": "commitlint --edit",
"quality:commits": "node -e \"const { execFileSync } = require('node:child_process'); const base = process.env.COMMITLINT_FROM || 'HEAD~1'; const to = process.env.COMMITLINT_TO || 'HEAD'; execFileSync('npx', ['commitlint', '--from', base, '--to', to, '--verbose'], { stdio: 'inherit' });\"",
"release": "npm run release:ci",
"release:verify-config": "node scripts/release/verify-release-config.mjs",
"release:ci": "npx --yes -p semantic-release@25 -p @semantic-release/changelog@6 -p @semantic-release/commit-analyzer@13 -p @semantic-release/exec@7 -p @semantic-release/github@12 -p @semantic-release/npm@13 -p @semantic-release/release-notes-generator@14 -p conventional-changelog-conventionalcommits@9 semantic-release",
"release:dry-run": "npm run release:ci -- --dry-run --no-ci"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "^20.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1"
}
}