-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
45 lines (45 loc) · 1.75 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
{
"name": "packsquash-action",
"version": "4.0.3",
"description": "Official action to run PackSquash in a GitHub Actions workflow.",
"scripts": {
"build": "ncc build src/index.ts -o dist/main -m && ncc build src/cleanup_working_directory.ts -o dist/cleanup_working_directory -m",
"check": "biome check --write",
"format:ci": "biome ci --error-on-warnings --linter-enabled=false",
"lint:ci": "biome ci --error-on-warnings --formatter-enabled=false --organize-imports-enabled=false",
"test": "npm run build && act --secret-file .act-secrets -W .github/workflows/test_empty_resource_pack.yml",
"test:pack-in-submodule": "npm run build && act --secret-file .act-secrets -W .github/workflows/test_pack_in_submodule.yml",
"test:pack-submodule": "npm run build && act --secret-file .act-secrets -W .github/workflows/test_pack_submodule.yml",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ComunidadAylas/PackSquash-action.git"
},
"author": "sya-ri, Alejandro \"AlexTMjugador\" González",
"license": "MIT",
"bugs": {
"url": "https://github.com/ComunidadAylas/PackSquash-action/issues"
},
"homepage": "https://github.com/ComunidadAylas/PackSquash-action#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/unzipper": "0.10.10",
"@types/uuid": "10.0.0",
"@vercel/ncc": "0.38.3",
"all-contributors-cli": "6.26.1",
"husky": "9.1.7",
"typescript": "5.7.3"
},
"dependencies": {
"@actions/artifact": "2.2.1",
"@actions/cache": "4.0.0",
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@actions/http-client": "2.2.3",
"smol-toml": "1.3.1",
"unzipper": "0.12.3",
"uuid": "11.0.5"
}
}