Add run codesign for huggingface extension (#2163)

Co-authored-by: Service Account <service@jan.ai>
This commit is contained in:
hiento09 2024-02-27 11:01:38 +07:00 committed by GitHub
parent 64ea290ca3
commit a28230caaa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,13 +8,17 @@
"license": "AGPL-3.0",
"scripts": {
"build": "tsc -b . && webpack --config webpack.config.js",
"build:publish": "rimraf *.tgz --glob && npm run build && npm pack && cpx *.tgz ../../pre-install"
"build:publish:win32": "rimraf *.tgz --glob && npm run build && npm pack && cpx *.tgz ../../pre-install",
"build:publish:linux": "rimraf *.tgz --glob && npm run build && npm pack && cpx *.tgz ../../pre-install",
"build:publish:darwin": "rimraf *.tgz --glob && npm run build && ../../.github/scripts/auto-sign.sh && npm pack && cpx *.tgz ../../pre-install",
"build:publish": "run-script-os"
},
"devDependencies": {
"rimraf": "^3.0.2",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"ts-loader": "^9.5.0"
"ts-loader": "^9.5.0",
"run-script-os": "^1.1.6"
},
"dependencies": {
"@janhq/core": "file:../../core",