-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 849 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 849 Bytes
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
{
"name": "~token-bureau-dev",
"version": "0.0.7",
"private": true,
"license": "MIT",
"description": "External endpoint for generating GitHub App tokens with OIDC verification",
"type": "module",
"scripts": {
"release": "commit-and-tag-version"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"commit-and-tag-version": "^12.5.0",
"nodemon": "^3.1.9"
},
"engines": {
"node": ">=20.0.0"
},
"commit-and-tag-version": {
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "packages/server/package.json",
"type": "json"
},
{
"filename": "packages/action/package.json",
"type": "json"
}
]
},
"pnpm": {
"onlyBuiltDependencies": []
},
"packageManager": "pnpm@10.27.0"
}