mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
fe106f0afc
* Install pnpm only local - not global * Install plugins during docker build with live-plugin-manager * Migrated installer to ts. * Added missing workspace script. * Fixed docker build. * Fix Dockerfile * Fixed installer not being yet initialized. * Ported installer to correct install path. * Fixed pnpm installation. * Fixed docker build. * Fixed plugin loading. * Fixed plugins not being able to be loaded. * Fix plugin installation instructions in README * Fixed startup. * Fixed folder not present. * Added unlinking dependencies. * Added deleting dependencies. * Fixed listing plugins. --------- Co-authored-by: SamTV12345 <40429738+samtv12345@users.noreply.github.com>
47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"name": "etherpad",
|
|
"description": "A free and open source realtime collaborative editor",
|
|
"homepage": "https://etherpad.org",
|
|
"type": "module",
|
|
"keywords": [
|
|
"etherpad",
|
|
"realtime",
|
|
"collaborative",
|
|
"editor"
|
|
],
|
|
"bin": {
|
|
"etherpad-healthcheck": "bin/etherpad-healthcheck"
|
|
},
|
|
"scripts": {
|
|
"lint": "pnpm --filter ep_etherpad-lite run lint",
|
|
"test": "pnpm --filter ep_etherpad-lite run test",
|
|
"test-container": "pnpm --filter ep_etherpad-lite run test-container",
|
|
"dev": "pnpm --filter ep_etherpad-lite run dev",
|
|
"prod": "pnpm --filter ep_etherpad-lite run prod",
|
|
"ts-check": "pnpm --filter ep_etherpad-lite run ts-check",
|
|
"ts-check:watch": "pnpm --filter ep_etherpad-lite run ts-check:watch",
|
|
"test-ui": "pnpm --filter ep_etherpad-lite run test-ui",
|
|
"test-ui:ui": "pnpm --filter ep_etherpad-lite run test-ui:ui",
|
|
"test-admin": "pnpm --filter ep_etherpad-lite run test-admin",
|
|
"test-admin:ui": "pnpm --filter ep_etherpad-lite run test-admin:ui",
|
|
"install-plugins": "pnpm --filter bin run install-plugins"
|
|
},
|
|
"dependencies": {
|
|
"ep_etherpad-lite": "workspace:./src"
|
|
},
|
|
"devDependencies": {
|
|
"admin": "workspace:./admin"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.18.2",
|
|
"npm": ">=6.14.0",
|
|
"pnpm": ">=8.3.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/ether/etherpad-lite.git"
|
|
},
|
|
"version": "1.9.7",
|
|
"license": "Apache-2.0"
|
|
}
|
|
|