-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 651 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 651 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
{
"name": "setup-graphviz",
"version": "2.0.2",
"author": "kamiazya <yuki@kamiazya.tech>",
"description": "Setup a graphviz environment.",
"private": true,
"license": "MIT",
"keywords": [
"actions",
"graphviz",
"setup"
],
"scripts": {
"lint": "biome check src",
"format": "biome check --apply src",
"typecheck": "tsc --noEmit",
"build": "tsc",
"test": "vitest"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/tool-cache": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.7.1",
"@types/node": "^20.12.7",
"typescript": "^5.4.5",
"vitest": "^1.5.0"
}
}