-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 907 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 907 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
{
"name": "gha-create-signed-commit",
"description": "Create a signed commit using the GitHub API without pushing it",
"main": "dist/index.js",
"scripts": {
"test": "node --test --require ts-node/register **/*.test.ts",
"prebuild": "mkdir -p dist",
"build": "ncc build src/index.ts -o dist --minify",
"lint": "biome check",
"lint:fix": "biome check --fix",
"format": "biome format",
"format:fix": "biome format --fix"
},
"author": "Statens Pensjonskasse",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1"
},
"devDependencies": {
"@statens-pensjonskasse/biome": "^2.0.22",
"@types/node": "^24.10.4",
"@vercel/ncc": "^0.38.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}