-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
51 lines (51 loc) · 1.28 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
{
"name": "actions-system-info",
"private": true,
"version": "0.0.0",
"description": "A GitHub action to get information about runner os system",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"clean": "rimraf dist/",
"lint": "biome ci src",
"lint:fix": "biome check --apply src",
"package": "npm run clean && npm run build && ncc build -o lib/ --license LICENSE -m -s",
"test": "vitest",
"showenv:SYSTEM_INFO_OUTPUTS": "node -e 'console.log(process.env.SYSTEM_INFO_OUTPUTS);'"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/kenchan0130/actions-system-info.git"
},
"keywords": [
"github",
"action",
"os",
"kernel",
"macos",
"windows",
"linux"
],
"author": "Tadayuki Onishi",
"license": "MIT",
"bugs": {
"url": "https://github.com/kenchan0130/actions-system-info/issues"
},
"homepage": "https://github.com/kenchan0130/actions-system-info#readme",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@types/getos": "*",
"@types/node": "*",
"@vercel/ncc": "*",
"rimraf": "*",
"typescript": "*",
"vitest": "*"
},
"dependencies": {
"@actions/core": "*",
"getos": "*",
"macos-release": "*",
"win-version": "*",
"windows-release": "*"
}
}