-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.6 KB
/
package.json
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
{
"name": "vcpkg-fmt-template",
"version": "0.1.2",
"description": "A sample project template that uses fmt via vcpkg featuring a fully integrated CI/CD pipeline to build, test and release the project.",
"homepage": "https://github.com/paulbuechner/vcpkg-fmt-template",
"repository": {
"type": "git",
"url": "https://github.com/paulbuechner/vcpkg-fmt-template"
},
"license": "Apache-2.0",
"author": "Paul Büchner",
"scripts": {
"changelog": "tsx scripts/changelog.ts",
"changelog:commit": "git add . && git commit -am 'docs: add changelog' && git push",
"changelog:format": "prettier --write .changelog",
"changelog:latest": "tsx scripts/changelog.ts --latest",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"version": "changeset version",
"version-bump": "tsx scripts/version-bump.ts",
"version-bump:commit": "git add . && git commit -am 'chore: bump version' && git push"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.26.1",
"@changesets/get-release-plan": "^4.0.0",
"@changesets/types": "^6.0.0",
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@octokit/rest": "^20.0.0",
"@types/edit-json-file": "^1.7.0",
"@types/node": "^20.0.0",
"edit-json-file": "^1.7.0",
"husky": "^9.0.0",
"prettier": "^3.0.0",
"prettier-plugin-packagejson": "^2.4.3",
"tsx": "^4.0.0",
"typescript": "^5.0.3"
},
"packageManager": "pnpm@9.12.3",
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}