2024-02-19 22:31:27 +01:00
|
|
|
{
|
|
|
|
"name": "etherpad",
|
|
|
|
"description": "A free and open source realtime collaborative editor",
|
|
|
|
"homepage": "https://etherpad.org",
|
2024-03-14 16:06:32 +01:00
|
|
|
"type": "module",
|
2024-02-19 22:31:27 +01:00
|
|
|
"keywords": [
|
|
|
|
"etherpad",
|
|
|
|
"realtime",
|
|
|
|
"collaborative",
|
|
|
|
"editor"
|
|
|
|
],
|
|
|
|
"bin": {
|
2024-03-12 22:10:27 +01:00
|
|
|
"etherpad-healthcheck": "bin/etherpad-healthcheck"
|
2024-02-19 22:31:27 +01:00
|
|
|
},
|
|
|
|
"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",
|
2024-03-10 23:18:50 +01:00
|
|
|
"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",
|
2024-03-14 16:06:32 +01:00
|
|
|
"test-admin:ui": "pnpm --filter ep_etherpad-lite run test-admin:ui",
|
|
|
|
"install-plugins": "pnpm --filter bin run install-plugins"
|
2024-02-19 22:31:27 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"ep_etherpad-lite": "workspace:./src"
|
|
|
|
},
|
2024-03-13 15:47:02 +01:00
|
|
|
"devDependencies": {
|
|
|
|
"admin": "workspace:./admin"
|
|
|
|
},
|
2024-02-19 22:31:27 +01:00
|
|
|
"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"
|
2024-03-10 23:18:50 +01:00
|
|
|
}
|
2024-03-14 16:06:32 +01:00
|
|
|
|