-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.33 KB
/
package.json
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
{
"name": "cerbos-compile-action",
"version": "0.0.1",
"private": true,
"description": "Cerbos Compile Action",
"main": "lib/main.js",
"exports": "./lib/main.js",
"packageManager": "pnpm@9.12.1",
"type": "module",
"engines": {
"node": "20.18.0",
"pnpm": "9.12.1"
},
"scripts": {
"build": "ncc build -o dist src/main.ts",
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"test": "glob -c \"node --import tsx --no-warnings --test\" \"./tests/**/*.test.ts\"",
"all": "pnpm run format && pnpm run lint && pnpm run build && pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cerbos/cerbos-compile-action.git"
},
"keywords": [
"actions",
"node",
"compile"
],
"author": "Cerbos",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@eslint/js": "^9.12.0",
"@types/eslint__js": "^8.42.3",
"@types/glob": "^8.1.0",
"@types/node": "22.7.5",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.12.0",
"glob": "^11.0.0",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.8.1"
}
}