Notes/package.json

111 lines
3.6 KiB
JSON
Raw Normal View History

{
2025-04-22 14:38:57 +03:00
"name": "@triliumnext/source",
2025-06-07 12:46:18 +03:00
"version": "0.94.1",
"description": "Build your personal knowledge base with TriliumNext Notes",
"directories": {
"doc": "docs"
},
"scripts": {
"client:test": "nx test client",
2025-04-24 14:36:36 +03:00
"client:build": "nx build client",
"client:coverage": "nx test client --coverage",
"server:test": "nx test server",
2025-04-24 14:36:36 +03:00
"server:build": "nx build server",
"server:coverage": "nx test server --coverage",
"server:start": "nx run server:serve",
2025-04-30 22:28:25 +03:00
"server:start-prod": "nx run server:start-prod",
2025-04-27 09:58:40 +03:00
"electron:build": "nx build desktop",
"chore:ci-update-nightly-version": "tsx ./scripts/update-nightly-version.ts",
2025-05-03 09:05:21 +02:00
"chore:generate-openapi": "tsx ./scripts/generate-openapi.ts",
"chore:update-build-info": "tsx ./scripts/update-build-info.ts",
"chore:update-version": "tsx ./scripts/update-version.ts",
"test:all": "pnpm test:parallel && pnpm test:sequential",
2025-05-09 22:04:23 +03:00
"test:parallel": "pnpm nx run-many -t test --all --exclude=ckeditor5-mermaid,ckeditor5-math --parallel",
"test:sequential": "pnpm nx run-many -t test --projects=ckeditor5-mermaid,ckeditor5-math --parallel=1",
"coverage": "pnpm nx run-many -t coverage"
},
2025-04-22 14:38:57 +03:00
"private": true,
"devDependencies": {
"@electron/rebuild": "4.0.1",
"@nx/devkit": "21.1.3",
"@nx/esbuild": "21.1.3",
"@nx/eslint": "21.1.3",
"@nx/eslint-plugin": "21.1.3",
"@nx/express": "21.1.3",
"@nx/js": "21.1.3",
"@nx/node": "21.1.3",
"@nx/playwright": "21.1.3",
"@nx/vite": "21.1.3",
"@nx/web": "21.1.3",
"@playwright/test": "^1.36.0",
2025-04-27 09:58:40 +03:00
"@triliumnext/server": "workspace:*",
"@types/express": "^5.0.0",
"@types/node": "22.15.31",
"@vitest/coverage-v8": "^3.0.5",
"@vitest/ui": "^3.0.0",
"chalk": "5.4.1",
"cross-env": "7.0.3",
"esbuild": "^0.25.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-playwright": "^2.0.0",
"happy-dom": "~18.0.0",
"jiti": "2.4.2",
"jsdom": "~26.1.0",
"jsonc-eslint-parser": "^2.1.0",
"nx": "21.1.3",
2025-05-09 09:00:49 +00:00
"react-refresh": "^0.17.0",
"rollup-plugin-webpack-stats": "2.0.7",
2025-04-22 14:38:57 +03:00
"tslib": "^2.3.0",
"tsx": "4.20.1",
"typescript": "~5.8.0",
"typescript-eslint": "^8.19.0",
"upath": "2.0.1",
"vite": "^6.0.0",
"vite-plugin-dts": "~4.5.0",
"vitest": "^3.0.0"
},
2025-04-22 14:38:57 +03:00
"license": "AGPL-3.0-only",
"author": {
"name": "TriliumNext Notes Team",
"email": "contact@eliandoran.me",
"url": "https://github.com/TriliumNext/Notes"
},
2025-04-22 14:38:57 +03:00
"repository": {
"type": "git",
"url": "git+https://github.com/TriliumNext/Notes.git"
},
"bugs": {
"url": "https://github.com/TriliumNext/Notes/issues"
},
"homepage": "https://github.com/TriliumNext/Notes#readme",
"dependencies": {
"axios": "^1.6.0",
"express": "^5.0.0"
2025-04-23 18:38:47 +03:00
},
2025-06-09 06:23:50 +00:00
"packageManager": "pnpm@10.12.1+sha512.f0dda8580f0ee9481c5c79a1d927b9164f2c478e90992ad268bbb2465a736984391d6333d2c327913578b2804af33474ca554ba29c04a8b13060a717675ae3ac",
2025-05-06 15:56:36 +03:00
"pnpm": {
"patchedDependencies": {
"@ckeditor/ckeditor5-mention": "patches/@ckeditor__ckeditor5-mention.patch",
"@ckeditor/ckeditor5-code-block": "patches/@ckeditor__ckeditor5-code-block.patch",
"ckeditor5": "patches/ckeditor5.patch"
2025-05-27 22:29:19 +03:00
},
"overrides": {
"node-abi": "4.9.0",
"mermaid": "11.6.0",
2025-06-11 19:42:44 +03:00
"preact": "10.26.8",
2025-06-11 19:45:36 +03:00
"roughjs": "4.6.6",
2025-05-27 22:29:19 +03:00
"@types/express-serve-static-core": "5.0.6",
"flat@<5.0.1": ">=5.0.1",
"debug@>=3.2.0 <3.2.7": ">=3.2.7",
"nanoid@<3.3.8": ">=3.3.8",
"nanoid@>=4.0.0 <5.0.9": ">=5.0.9",
"dompurify@<3.2.4": ">=3.2.4",
"esbuild@<=0.24.2": ">=0.25.0"
2025-05-06 15:56:36 +03:00
}
2025-05-27 22:26:58 +03:00
},
"nx": {
"name": "triliumnext"
2025-05-06 15:56:36 +03:00
}
}