-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 953 Bytes
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
{
"name": "setup-solr-action",
"version": "1.2.0",
"description": "Setup Apache Solr in CI, create a core, and configure custom configsets",
"author": "Dhaval Gojiya <dhavalgojiya10@gmail.com>",
"contributors": [
"Dhaval Gojiya <dhavalgojiya10@gmail.com>"
],
"repository": "https://github.com/dhavalgojiya/setup-solr-action",
"private": true,
"license": "MIT",
"main": "src/action.js",
"scripts": {
"build": "tsup",
"check": "biome check --write .",
"format:sh": "shfmt -w -i 4 src/scripts/",
"act": "act pull_request -W .github/workflows/ci-test.yml --container-architecture linux/amd64",
"all": "npm install --no-fund && npm run check && npm run format:sh && npm run build"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.1",
"@types/node": "^26.0.1",
"tsup": "^8.5.1",
"typescript": "^6.0.3"
}
}