-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.16 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
{
"name": "upload-meta-quest-build",
"version": "2.1.1",
"description": "A GitHub Action for uploading a Meta Quest app to the Meta Quest store.",
"author": "RageAgainstThePixel",
"repository": {
"type": "git",
"url": "git+https://github.com/RageAgainstThePixel/upload-meta-quest-build.git"
},
"bugs": {
"url": "https://github.com/RageAgainstThePixel/upload-meta-quest-build/issues"
},
"homepage": "https://github.com/RageAgainstThePixel/upload-meta-quest-build",
"keywords": [
"meta",
"quest",
"upload",
"action"
],
"license": "MIT",
"main": "dist/index.js",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/glob": "^0.4.0",
"@actions/io": "^1.1.3",
"unzip-stream": "^0.3.4"
},
"devDependencies": {
"@types/node": "^22.3.0",
"@types/unzip-stream": "^0.3.4",
"@vercel/ncc": "^0.34.0",
"shx": "^0.3.4",
"typescript": "^5.5.4"
},
"scripts": {
"build": "npm run clean && npm run bundle",
"bundle": "ncc build src/index.ts -o dist --source-map --license licenses.txt",
"clean": "npm install && shx rm -rf dist/ out/ node_modules/ && npm ci"
}
}