Skip to content

Commit

Permalink
draupnir: Add package.json to nixpkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
TheArcaneBrony committed Nov 29, 2023
1 parent c7140dd commit 9eb247b
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/servers/draupnir/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ mkYarnPackage rec {
hash = "sha256-j4xiEP54b7nn+bKkTUemwFNpA7s8DlsYnYX4KZgUhHU=";
};
yarnLock = src + "/yarn.lock";
packageJSON = src + "/package.json";
packageJSON = ./package.json;

buildPhase = ''
echo "Running preBuild"
Expand Down
70 changes: 70 additions & 0 deletions pkgs/servers/draupnir/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"name": "draupnir",
"version": "1.85.1",
"description": "A moderation tool for Matrix",
"main": "lib/index.js",
"repository": "https://github.com/Gnuxie/Draupnir.git",
"author": "Gnuxie",
"license": "SEE LICENSE IN LICENSE",
"private": true,
"scripts": {
"build": "tsc",
"postbuild": "yarn remove-tests-from-lib && yarn describe-version",
"describe-version": "(git describe > version.txt.tmp && mv version.txt.tmp version.txt) || true && rm -f version.txt.tmp",
"remove-tests-from-lib": "rm -rf lib/test/ && cp -r lib/src/* lib/ && rm -rf lib/src/",
"lint": "tslint --project ./tsconfig.json -t stylish",
"start:dev": "yarn build && node --async-stack-traces lib/index.js",
"test": "ts-mocha --project ./tsconfig.json test/commands/**/*.ts",
"test:integration": "NODE_ENV=harness ts-mocha --async-stack-traces --forbid-only --require test/integration/fixtures.ts --timeout 300000 --project ./tsconfig.json \"test/integration/**/*Test.ts\"",
"test:integration:single": "NODE_ENV=harness npx ts-mocha --require test/integration/fixtures.ts --timeout 300000 --project ./tsconfig.json",
"test:appservice:integration": "NODE_ENV=harness ts-mocha --async-stack-traces --forbid-only --timeout 300000 --project ./tsconfig.json \"test/appservice/integration/**/*Test.ts\"",
"test:appservice:integration:single": "NODE_ENV=harness npx ts-mocha --timeout 300000 --project ./tsconfig.json",
"test:manual": "NODE_ENV=harness ts-node test/integration/manualLaunchScript.ts",
"version": "sed -i '/# version automated/s/[0-9][0-9]*\\.[0-9][0-9]*\\.[0-9][^\"]*/'$npm_package_version'/' synapse_antispam/setup.py && git add synapse_antispam/setup.py && cat synapse_antispam/setup.py"
},
"devDependencies": {
"@types/config": "^3.3.1",
"@types/crypto-js": "^4.1.2",
"@types/express": "^4.17.13",
"@types/html-to-text": "^8.0.1",
"@types/humanize-duration": "^3.27.1",
"@types/js-yaml": "^4.0.5",
"@types/jsdom": "^16.2.11",
"@types/mocha": "^10.0.1",
"@types/nedb": "^1.8.13",
"@types/node": "^20.6.0",
"@types/pg": "^8.6.5",
"@types/request": "^2.48.8",
"@types/shell-quote": "1.7.1",
"crypto-js": "^4.1.1",
"eslint": "^8.49",
"expect": "^29.6.4",
"mocha": "^10.2.0",
"ts-mocha": "^10.0.0",
"tslint": "^6.1.3",
"typescript": "^5.2.2",
"typescript-formatter": "^7.2"
},
"dependencies": {
"@sentry/node": "^7.17.2",
"@sentry/tracing": "^7.17.2",
"await-lock": "^2.2.2",
"body-parser": "^1.20.1",
"config": "^3.3.9",
"express": "^4.17",
"html-to-text": "^8.0.0",
"humanize-duration": "^3.27.1",
"humanize-duration-ts": "^2.1.1",
"js-yaml": "^4.1.0",
"jsdom": "^16.6.0",
"matrix-appservice-bridge": "^9.0.1",
"parse-duration": "^1.0.2",
"pg": "^8.8.0",
"shell-quote": "^1.7.3",
"ulidx": "^0.3.0",
"yaml": "^2.3.2"
},
"engines": {
"node": ">=18.0.0"
}
}

0 comments on commit 9eb247b

Please sign in to comment.