-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.76 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.76 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "terraform-module-releaser",
"description": "GitHub Actions TypeScript template",
"version": "2.1.0",
"author": "virgofx",
"type": "module",
"main": "lib/index.js",
"homepage": "https://github.com/techpivot/terraform-module-releaser",
"repository": {
"type": "git",
"url": "git+https://github.com/techpivot/terraform-module-releaser.git"
},
"bugs": {
"url": "https://github.com/techpivot/terraform-module-releaser/issues"
},
"keywords": [
"terraform",
"module",
"releaser",
"github-action",
"monorepo"
],
"license": "MIT",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=24"
},
"prettier": {
"overrides": [
{
"files": "*.md",
"options": {
"printWidth": 120,
"proseWrap": "always"
}
}
]
},
"scripts": {
"check": "biome check . && npx prettier -c \"{*.md,docs/**/*.md,.github/**/*.md}\" \"**/*.yml\"",
"check:fix": "biome check --write --unsafe . && npx prettier --list-different -w \"{*.md,docs/**/*.md,.github/**/*.md}\" \"**/*.yml\"",
"dev:parse-modules": "tsx scripts/dev-parse-modules.ts",
"textlint": "textlint -c .github/linters/.textlintrc **/*.md",
"textlint:fix": "textlint -c .github/linters/.textlintrc --fix **/*.md",
"typecheck": "tsc --noEmit",
"package": "ncc build src/index.ts --source-map -o dist",
"test": "vitest run --coverage",
"test:watch": "vitest",
"test:parse-modules": "tsx scripts/parse-modules-test.ts",
"changelog": "node scripts/changelog.js 10.0.0",
"coverage": "make-coverage-badge --output-path ./assets/coverage-badge.svg",
"terraform-docs-version": "gh api repos/terraform-docs/terraform-docs/releases/latest --jq '.tag_name'"
},
"dependencies": {
"@actions/core": "^3.0.0",
"@octokit/core": "^7.0.6",
"@octokit/plugin-paginate-rest": "^14.0.0",
"@octokit/plugin-rest-endpoint-methods": "^17.0.0",
"@octokit/request-error": "^7.1.0",
"conventional-commits-parser": "^6.3.0",
"minimatch": "^10.2.4",
"p-limit": "^7.3.0",
"which": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "^2.4.10",
"@octokit/types": "^16.0.0",
"@octokit/webhooks-types": "^7.6.1",
"@types/conventional-commits-parser": "^5.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.5.2",
"@types/which": "^3.0.4",
"@vercel/ncc": "^0.38.4",
"@vitest/coverage-v8": "^4.1.2",
"js-yaml": "^4.1.1",
"make-coverage-badge": "^1.2.0",
"openai": "^6.33.0",
"prettier": "^3.8.1",
"textlint": "^15.5.2",
"textlint-filter-rule-comments": "^1.3.0",
"textlint-rule-terminology": "^5.2.16",
"ts-deepmerge": "^7.0.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.0.18"
}
}