Files
Draupnir/package.json
GnuxieandGitHub b63ab3ce89
Docker Hub - Develop / docker-latest (push) Canceled after 0s
GHCR - Development Branches / ghcr-publish (push) Canceled after 0s
Tests / Build & Lint (push) Canceled after 0s
Tests / Unit tests (push) Canceled after 0s
Tests / Integration tests (push) Canceled after 0s
Tests / Application Service Integration tests (push) Canceled after 0s
Validate Docker Build / validate-docker-build (push) Canceled after 0s
Remove the aliases for the matrix-protection-suite packages. (#1162)
* Remove old matrix-protection-suite package aliases.

This was leading to issues with monorepo package management.
https://github.com/the-draupnir-project/Draupnir/issues/1124

* Fix badly imported symbols from packages that already export them.

* Cleanup build command arguments.

There was a deprecation warning for short workspaces flag.
2026-07-18 12:12:57 +00:00

50 lines
1.4 KiB
JSON

{
"name": "@the-draupnir-project/monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/the-draupnir-project/Draupnir.git"
},
"author": "Gnuxie",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/the-draupnir-project/Draupnir/issues"
},
"homepage": "https://github.com/the-draupnir-project/Draupnir#readme",
"scripts": {
"build": "tsc -b && npm run --workspaces build:assets --if-present",
"build:all": "tsc -b tsconfig.all.json && npm run --workspaces build:assets --if-present",
"build:clean": "tsc -b --clean",
"test": "npm run --workspaces test --if-present && npm run -w apps/draupnir test:unit",
"lint": "eslint --cache 'packages/**/*.{ts,tsx}' 'apps/**/*.{ts,tsx}' && prettier --cache --ignore-unknown --check ."
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.3",
"@types/jest": "^30.0.0",
"eslint": "^9.39.3",
"jest": "^30.3.0",
"prettier": "^3.3.3",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"overrides": {
"@vector-im/matrix-bot-sdk": "0.8.0-element.3",
"postgres": "3.4.7"
},
"engines": {
"node": ">=24.0.0"
},
"allowScripts": {
"@matrix-org/matrix-sdk-crypto-nodejs": true,
"better-sqlite3": true,
"unrs-resolver": true
}
}