-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 939 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 939 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
{
"name": "gha-create-signed-commit",
"description": "Create a signed commit using the GitHub API without pushing it",
"type": "module",
"main": "dist/index.js",
"scripts": {
"test": "node --test --import tsx **/*.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": "^3.0.0",
"@actions/github": "^9.1.0"
},
"devDependencies": {
"@statens-pensjonskasse/biome": "^2.0.23",
"@types/node": "^24.12.2",
"@vercel/ncc": "^0.38.4",
"esmock": "^2.7.3",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}