mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
- Added a new script "core:stage" to package.json for staging the openhuman-app. - Enhanced the setup-dev-codesign.sh script to generate a self-signed code-signing certificate using a custom OpenSSL configuration, improving the certificate's attributes for code signing.
31 lines
1.0 KiB
JSON
31 lines
1.0 KiB
JSON
{
|
|
"name": "openhuman-repo",
|
|
"private": true,
|
|
"workspaces": [
|
|
"app"
|
|
],
|
|
"resolutions": {
|
|
"@tauri-apps/api": "2.10.1"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn workspace openhuman-app build",
|
|
"compile": "yarn workspace openhuman-app compile",
|
|
"core:stage": "yarn workspace openhuman-app core:stage",
|
|
"dev": "yarn workspace openhuman-app dev",
|
|
"dev:app": "yarn workspace openhuman-app dev:app",
|
|
"format": "yarn workspace openhuman-app format",
|
|
"format:check": "yarn workspace openhuman-app format:check",
|
|
"lint": "yarn workspace openhuman-app lint",
|
|
"lint:fix": "yarn workspace openhuman-app lint:fix",
|
|
"tauri": "yarn workspace openhuman-app tauri",
|
|
"test": "yarn workspace openhuman-app test",
|
|
"test:coverage": "yarn workspace openhuman-app test:coverage",
|
|
"test:rust": "yarn workspace openhuman-app test:rust",
|
|
"mock:api": "node scripts/mock-api-server.mjs",
|
|
"typecheck": "yarn workspace openhuman-app compile"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "2.10.1"
|
|
}
|
|
}
|