Files
ThreadNet-Web/modules/restricted-guests/synapse/package.json
T
Andrew Ferrazzutti 673bda4515 synapse guest module: set version to 1.0.0
as opposed to picking up from where upstream left off at 2.0.0.
(Note that CHANGELOG.md was already at 1.0.0.)
2025-02-10 15:37:11 -05:00

25 lines
1020 B
JSON

{
"name": "@element-hq/synapse-guest-module",
"version": "1.0.0",
"private": true,
"description": "A synapse module to restrict the actions of guests",
"author": "New Vector Ltd.",
"license": "Apache-2.0",
"scripts": {
"prepare": "echo \"Nothing to prepare\"",
"clean": "echo \"Nothing to clean\"",
"build": "echo \"Nothing to build\"",
"docker:build": "docker build -t element-hq/synapse-guest-module -f Dockerfile .",
"tsc": "echo \"Nothing to tsc\"",
"lint": "echo \"Nothing to lint\"",
"lint:ts": "echo \"Nothing to lint:ts\"",
"types:py": "./scripts/run_in_venv.sh tox -e check_types",
"lint:py": "./scripts/run_in_venv.sh tox -e check_codestyle",
"lint:fix": "./scripts/run_in_venv.sh tox -e fix_codestyle",
"test": "./scripts/run_in_venv.sh tox -e py",
"vitest": "echo \"Nothing to vitest\"",
"depcheck": "echo \"Nothing to check\"",
"package": "yarn docker:build"
}
}