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",
|
2024-06-04 19:32:21 +02:00
|
|
|
"test-utils": "pnpm --filter ep_etherpad-lite run test-utils",
|
2024-02-19 22:31:27 +01:00
|
|
|
"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",
|
2024-05-24 21:57:39 +02:00
|
|
|
"plugins": "pnpm --filter bin run plugins",
|
2024-06-01 14:05:53 +02:00
|
|
|
"install-plugins": "pnpm --filter bin run plugins i",
|
2024-05-18 11:56:41 +02:00
|
|
|
"remove-plugins": "pnpm --filter bin run remove-plugins",
|
2024-07-18 08:51:30 +02:00
|
|
|
"list-plugins": "pnpm --filter bin run list-plugins",
|
2024-07-23 17:43:18 +02:00
|
|
|
"build:etherpad": "pnpm --filter admin run build-copy && pnpm --filter ui run build-copy",
|
2024-09-05 18:54:17 +02:00
|
|
|
"build:ui": "pnpm --filter ui run build-copy && pnpm --filter admin run build-copy",
|
|
|
|
"makeDocs": "pnpm --filter bin run makeDocs"
|
2024-02-19 22:31:27 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"ep_etherpad-lite": "workspace:./src"
|
|
|
|
},
|
2024-03-13 15:47:02 +01:00
|
|
|
"devDependencies": {
|
2024-03-23 20:58:05 +01:00
|
|
|
"admin": "workspace:./admin",
|
2024-03-26 17:11:24 +01:00
|
|
|
"docs": "workspace:./doc",
|
|
|
|
"ui": "workspace:./ui"
|
2024-03-13 15:47:02 +01:00
|
|
|
},
|
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"
|
|
|
|
},
|
2024-08-09 11:40:31 +02:00
|
|
|
"version": "2.2.2",
|
2024-05-24 21:36:13 +02:00
|
|
|
"license": "Apache-2.0"
|
2024-03-10 23:18:50 +01:00
|
|
|
}
|