generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.22 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
{
"name": "dependency-cruiser-report-action",
"version": "2.5.1",
"private": true,
"description": "visualize dependenices of changed files in each pull request.",
"keywords": ["actions", "node", "setup"],
"repository": {
"type": "git",
"url": "git+https://github.com/MH4GF/dependency-cruiser-report-action.git"
},
"license": "MIT",
"author": "",
"main": "lib/main.js",
"scripts": {
"all": "npm run build && npm run lint && npm test",
"build": "tsc",
"coverage": "vitest run --coverage",
"format": "biome check --apply-unsafe .",
"lint": "pnpm run lint:biome & pnpm run lint:depcruise",
"lint:biome": "biome ci .",
"lint:depcruise": "depcruise src --config",
"package": "ncc build src/main.ts --source-map --license licenses.txt",
"test": "vitest"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"yup": "1.6.1"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@mh4gf/configs": "0.4.1",
"@types/node": "22.10.5",
"@vercel/ncc": "0.38.3",
"dependency-cruiser": "16.3.10",
"js-yaml": "4.1.0",
"typescript": "5.7.2",
"vitest": "2.1.8"
},
"packageManager": "[email protected]"
}