Files

59 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2024-02-17 19:14:10 -08:00
{
"name": "@actions/attest",
2025-12-08 19:19:29 -08:00
"version": "2.1.0",
2024-02-17 19:14:10 -08:00
"description": "Actions attestation lib",
"keywords": [
"github",
"actions",
"attestation"
],
"homepage": "https://github.com/actions/toolkit/tree/main/packages/attest",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "__tests__"
},
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/toolkit.git",
"directory": "packages/attest"
},
"scripts": {
"test": "echo \"Error: run tests from root\" && exit 1",
"tsc": "tsc"
},
"bugs": {
"url": "https://github.com/actions/toolkit/issues"
},
"devDependencies": {
2025-09-29 19:01:19 +01:00
"@sigstore/mock": "^0.10.0",
2024-10-14 12:06:26 -07:00
"@sigstore/rekor-types": "^3.0.0",
2024-03-21 19:25:36 -07:00
"@types/jsonwebtoken": "^9.0.6",
2024-04-10 16:53:17 -07:00
"nock": "^13.5.1",
2025-09-29 19:01:19 +01:00
"undici": "^6.20.0"
2024-02-17 19:14:10 -08:00
},
"dependencies": {
2024-10-14 12:16:09 -07:00
"@actions/core": "^1.11.1",
2024-02-17 19:14:10 -08:00
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.3",
"@octokit/plugin-retry": "^6.0.1",
2025-09-29 19:01:19 +01:00
"@sigstore/bundle": "^3.1.0",
"@sigstore/sign": "^3.1.0",
"jose": "^5.10.0"
},
"overrides": {
"@octokit/plugin-retry": {
"@octokit/core": "^5.2.0"
2025-09-25 18:20:30 +01:00
}
2024-02-17 19:14:10 -08:00
}
2025-12-08 19:19:29 -08:00
}