Files
Draupnir/package.json
Gnuxie 8976b04c49
Docker Hub - Develop / docker-latest (push) Failing after 36s
GHCR - Development Branches / ghcr-publish (push) Failing after 35s
Tests / Application Service Integration tests (push) Failing after 12s
Tests / Integration tests (push) Failing after 15s
Tests / Unit tests (push) Failing after 14m57s
Tests / Build & Lint (push) Failing after 15m0s
Be more precise about licensing. (#1073)
* Be more precise about licensing.

I've added a root LICENSE file describing the use of multiple licenses
in the repository, especially given that it is now monorepo.

This does not change any licensing terms or introduce new requirements
It makes the existing setup more explicit and easier to understand for
users and downstream distributors. And reflects the existing REUSE
compliant setup.

* Be more comprehensive in our description.
2026-04-10 12:15:49 +01:00

45 lines
1.3 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": "SEE LICENSE IN LICENSE",
"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 -ws build:assets --if-present",
"build:all": "tsc -b tsconfig.all.json && npm run -ws build:assets --if-present",
"build:clean": "tsc -b --clean",
"test": "npm run -ws 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"
}
}