-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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": "init-beatsaber",
"description": "A GitHub Action to initialize a Beat Saber modding environment",
"version": "1.6.6",
"author": "BeatForge",
"private": true,
"type": "module",
"homepage": "https://github.com/beat-forge/init-beatsaber",
"repository": {
"type": "git",
"url": "git+https://github.com/beat-forge/init-beatsaber.git"
},
"bugs": {
"url": "https://github.com/beat-forge/init-beatsaber/issues"
},
"main": "dist/index.js",
"engines": {
"node": ">=20"
},
"scripts": {
"all": "bun run format:write && bun run package",
"package:node": "bun build --target=node ./src/index.ts --outfile=dist/index.js --minify",
"package:bun": "bun build --target=bun ./src/index.ts --outfile=dist/index.js --minify",
"format:write": "prettier --write \"**/*.{ts,tsx}\"",
"bundle": "bun run format:write && bun run package:node"
},
"license": "AGPL-3.0",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^5.1.1",
"tar": "^7.4.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"bun-types": "^1.1.20",
"prettier": "^3.3.3",
"typescript": "^5.5.3"
}
}