-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.97 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.97 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "docs.template",
"version": "1.0.3",
"description": "This project serves as a documentation template for other projects. It also contains essential foundational documents and instructions for creating them. Specifically, it includes files and folders for ADR, AIR, AID, AGENTS.md, LICENSE, release cycle, commit cycle guides, and more.",
"keywords": [
"docs",
"template",
"agents",
"adr"
],
"private": true,
"homepage": "https://github.com/indigo-soft/docs.template#readme",
"bugs": {
"url": "https://github.com/indigo-soft/docs.template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/indigo-soft/docs.template.git"
},
"license": "MIT",
"author": "github.com/indigo-soft",
"type": "module",
"main": "./src/index.ts",
"directories": {
"doc": "docs"
},
"scripts": {
"start": "bash scripts/start/start.sh",
"init": "bash scripts/init/init.sh",
"lint:fix": "markdownlint-cli2 --fix \"**/*.md\" \"#node_modules/**\" \"#reports/**\" \"#CHANGELOG.md\"",
"lint:check": "markdownlint-cli2 \"**/*.md\" \"#node_modules/**\" \"#reports/**\" \"#CHANGELOG.md\"",
"lint": "pnpm run lint:fix && pnpm run lint:check",
"format:fix": "prettier --write .",
"format:check": "prettier --check .",
"format": "pnpm run format:fix && pnpm run format:check",
"release": "bash scripts/release/release.sh",
"release:dry": "bash scripts/release/release.sh --dry",
"release:patch": "bash scripts/release/release.sh --type=patch",
"release:minor": "bash scripts/release/release.sh --type=minor",
"release:major": "bash scripts/release/release.sh --type=major"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=10.0.0"
},
"release-it": {
"extends": "./.release-it.json"
},
"devDependencies": {
"lefthook": "^2.1.8"
}
}