-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.19 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.19 KB
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
{
"name": "@asdf-vm/actions",
"version": "4.0.1",
"description": "asdf github actions",
"repository": "github:asdf-vm/actions",
"license": "Apache-2.0",
"author": "asdf Core Team (https://github.com/orgs/asdf-vm/people)",
"type": "commonjs",
"scripts": {
"build": "esbuild src/install/main.ts src/plugin-test/main.ts src/plugins-add/main.ts src/setup/main.ts --bundle --outdir=. --target=node24 --platform=node",
"build:check_uncommitted_changes": "bash -c 'if [ $(git status --porcelain | grep --extended-regexp \"src|install|plugin-test|plugins-add\" | wc -l) -gt 0 ]; then printf \"* %s\\n\" \"Detected uncommitted changes after build. See status below:\"; git diff; exit 1; fi'",
"fmt": "biome check --fix",
"lint": "biome check",
"prepare": "lefthook install",
"type_check": "tsc"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.1",
"@actions/http-client": "3.0.0",
"@actions/io": "2.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.5",
"@types/node": "24.10.1",
"esbuild": "0.27.0",
"typescript": "5.9.3"
},
"engines": {
"node": "=24.11.1",
"pnpm": "=10.22.0"
}
}