forked from pelikhan/action-genai-video-issue-analyzer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 1.19 KB
/
package.json
File metadata and controls
24 lines (24 loc) · 1.19 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
{
"dependencies": {
"genaiscript": "1.142.12"
},
"scripts": {
"upgrade": "npx -y npm-check-updates -u && npm install",
"docker:build": "docker build -t pelikhan-action-genai-video-issue-analyzer .",
"docker:start": "docker run -e GITHUB_TOKEN pelikhan-action-genai-video-issue-analyzer",
"whisperasr:start": "docker run -d -p 9000:9000 -e ASR_MODEL=base -e ASR_ENGINE=openai_whisper onerahmet/openai-whisper-asr-webservice:latest --network host",
"whisperasr:ping": "curl -I http://whisper:9000/docs",
"act:install": "gh extension install https://github.com/nektos/gh-act",
"act": "gh act",
"lint": "npx --yes prettier --write genaisrc/",
"fix": "genaiscript scripts fix",
"typecheck": "genaiscript scripts compile",
"configure": "genaiscript configure action action-video-issue-analyzer",
"test": "echo 'No tests defined.'",
"action": "genaiscript run action-video-issue-analyzer --github-workspace --pull-request-comment --no-run-trace --no-output-trace",
"start": "WHISPERASR_API_BASE=http://whisper:9000 npm run action",
"dev": "clear && GITHUB_ISSUE=1 DEBUG=script npm run action",
"release": "sh release.sh"
},
"version": "0.0.3"
}