-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 998 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 998 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
{
"name": "@enforceauth/deploy-action",
"version": "1.0.0",
"description": "Deploy OPA bundles via EnforceAuth API using OIDC workload identity",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist --source-map --license licenses.txt",
"build:watch": "ncc build src/main.ts -o dist --source-map --watch",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"lint": "eslint src/**/*.ts",
"test": "bun test",
"all": "bun run format && bun run lint && bun run build"
},
"keywords": [
"github-action",
"opa",
"policy",
"deployment",
"oidc",
"enforceauth"
],
"author": "EnforceAuth",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.56.0",
"prettier": "^3.2.0",
"typescript": "^5.3.3"
}
}