Files
twenty/packages/twenty-apps/community/linkedin-browser-extension/browser-extension/project.json
T
Félix Malfait d85785e380 Twenty self hosting app (#15987)
App to manage telemetry/billing (twenty for twenty!)
2025-11-21 14:10:51 +01:00

49 lines
1.1 KiB
JSON
Executable File

{
"name": "twenty-browser-extension",
"$schema": "../../node_modules/nx/schemas/project-schema.json",
"sourceRoot": "packages/twenty-browser-extension/src",
"projectType": "application",
"tags": ["scope:browser-extension"],
"targets": {
"dev": {
"executor": "nx:run-commands",
"options": {
"command": "wxt --mode development",
"cwd": "packages/twenty-browser-extension",
"color": true
},
"configurations": {
"development": {
"command": "wxt --mode development"
}
}
},
"build": {
"executor": "nx:run-commands",
"options": {
"command": "wxt build",
"cwd": "packages/twenty-browser-extension",
"color": true
},
"configurations": {
"production": {
"command": "wxt build"
}
}
},
"package": {
"executor": "nx:run-commands",
"options": {
"command": "wxt zip",
"cwd": "packages/twenty-browser-extension",
"color": true
},
"configurations": {
"production": {
"command": "wxt zip"
}
}
}
}
}