-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
39 lines (39 loc) · 1.25 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
{
"name": "@asdf-vm/actions",
"version": "3.0.2",
"description": "asdf github actions",
"repository": "https://github.com/asdf-vm/actions",
"author": "asdf Core Team (https://github.com/orgs/asdf-vm/people)",
"license": "Apache-2.0",
"scripts": {
"prepare": "lefthook install",
"fmt": "xo --fix ./src/**/*.ts",
"type_check": "tsc",
"lint": "xo ./src/**/*.ts",
"build": "esbuild src/install/main.ts src/plugin-test/main.ts src/plugins-add/main.ts src/setup/main.ts --bundle --outdir=. --target=node16 --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'"
},
"engines": {
"node": "=20.6.1",
"pnpm": "=8.7.5"
},
"xo": {
"rules": {
"unicorn/prefer-top-level-await": [
"off"
]
}
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/io": "^1.1.3"
},
"devDependencies": {
"@types/node": "^20.2.5",
"esbuild": "^0.17.19",
"typescript": "^5.1.3",
"xo": "^0.54.2"
}
}