-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.96 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@cryptoguard/action",
"version": "0.1.0",
"description": "GitHub Action for cryptographically verified deployment with SLSA provenance",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"build:dev": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"build:production": "ncc build src/main.ts -o dist --minify --source-map --license licenses.txt",
"dev": "npm run build && node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "jest --config jest.e2e.config.js",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"check-types": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "https://github.com/cryptoguard/cryptoguard.git",
"directory": "packages/action"
},
"keywords": [
"github-action",
"sigstore",
"cosign",
"slsa",
"attestation",
"cryptoguard",
"deployment",
"security"
],
"author": "CryptoGuard Team",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@cryptoguard/crypto": "workspace:*",
"@mysten/walrus": "^0.6.7",
"@noble/ed25519": "^2.0.0",
"@noble/hashes": "^1.3.3",
"@sigstore/bundle": "^2.2.0",
"@sigstore/sign": "^2.2.1",
"@sigstore/verify": "^1.0.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"sigstore": "^3.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^7.1.1",
"@typescript-eslint/parser": "^7.1.1",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=20"
}
}