Files
openhuman/package.json
T
Steven EnamakelandGitHub 1ae4cdbcee feat(scripts): add core:stage script and enhance code-signing certificate generation (#311)
- 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.
2026-04-03 10:13:15 -07:00

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"
}
}