-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.13 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.13 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
35
36
37
38
{
"name": "upm-release",
"version": "2.0.1",
"description": "A GitHub action to sign and release a Unity UPM package.",
"author": "RageAgainstThePixel",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RageAgainstThePixel/upm-release.git"
},
"bugs": {
"url": "https://github.com/RageAgainstThePixel/upm-release/issues"
},
"homepage": "https://github.com/RageAgainstThePixel/upm-release",
"main": "dist/index.js",
"engines": {
"node": ">=24"
},
"keywords": [],
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@actions/glob": "^0.7.0",
"@rage-against-the-pixel/unity-cli": "^2.0.0"
},
"devDependencies": {
"@types/node": "^24.12.2",
"esbuild": "^0.28.0",
"shx": "^0.4.0",
"typescript": "^6.0.3"
},
"scripts": {
"build": "npm run clean && npm run bundle",
"bundle": "esbuild src/index.ts --bundle --platform=node --target=node24 --format=cjs --outfile=dist/index.js --sourcemap --log-level=warning",
"clean": "npm install && shx rm -rf dist/ out/ node_modules/ && npm ci"
}
}