voice-changer/package.json

31 lines
1.1 KiB
JSON
Raw Normal View History

2022-08-22 10:08:49 +03:00
{
"name": "voice-changer",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
2022-11-10 20:06:54 +03:00
"build:docker": "date +%Y%m%d%H%M%S > docker/dummy && DOCKER_BUILDKIT=1 docker build -f docker/Dockerfile docker/ -t voice-changer",
2023-01-07 14:07:39 +03:00
"build:docker:onnx": "DOCKER_BUILDKIT=1 docker build -f docker_onnx/Dockerfile docker/ -t onnx-converter",
2023-02-09 15:43:02 +03:00
"build:docker:trainer": "date +%Y%m%d%H%M%S > docker_trainer/dummy && DOCKER_BUILDKIT=1 docker build -f docker_trainer/Dockerfile docker_trainer/ -t trainer",
2022-08-23 00:37:18 +03:00
"push:docker": "bash script/001_pushDocker.sh",
2023-01-31 12:27:26 +03:00
"push:docker:trainer": "bash script/002_pushDockerTrainer.sh",
2022-08-22 10:08:49 +03:00
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/w-okada/voice-changer.git"
},
2023-01-29 09:34:56 +03:00
"keywords": [
"voice conversion"
],
"author": "wataru.okada@flect.co.jp",
2022-08-22 10:08:49 +03:00
"license": "ISC",
"bugs": {
"url": "https://github.com/w-okada/voice-changer/issues"
},
2022-08-27 05:43:55 +03:00
"homepage": "https://github.com/w-okada/voice-changer#readme",
"devDependencies": {
"npm-run-all": "^4.1.5"
}
2022-08-22 10:08:49 +03:00
}