mirror of
https://github.com/element-hq/matrix-authentication-service.git
synced 2026-04-28 06:16:50 +00:00
50 lines
1.3 KiB
JSON
50 lines
1.3 KiB
JSON
{
|
|
"name": "@vector-im/syn2mas",
|
|
"version": "0.12.0",
|
|
"description": "A tool to migrate Synapse users and sessions to the Matrix Authentication Service",
|
|
"license": "AGPL-3.0-only",
|
|
"author": "Matrix.org",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/element-hq/matrix-authentication-service"
|
|
},
|
|
"bin": {
|
|
"syn2mas": "dist/index.js"
|
|
},
|
|
"files": ["src", "dist", "package.json", "LICENSE", "README.md"],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"prepare": "npm run build",
|
|
"build": "tsc",
|
|
"dev": "tsx src/index.ts",
|
|
"lint": "npm run lint:types && npm run lint:style",
|
|
"lint:style": "biome check",
|
|
"lint:types": "tsc --noEmit",
|
|
"start": "node dist/index.js"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@tsconfig/node22": "^22.0.0",
|
|
"@tsconfig/strictest": "^2.0.2",
|
|
"@types/command-line-args": "^5.2.2",
|
|
"@types/node": "^22.0.0",
|
|
"tsx": "^4.16.2",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"command-line-args": "^6.0.0",
|
|
"id128": "^1.6.6",
|
|
"knex": "^3.0.1",
|
|
"log4js": "^6.9.1",
|
|
"pg": "^8.11.3",
|
|
"pg-query-stream": "^4.6.0",
|
|
"sqlite3": "^5.1.6",
|
|
"ts-command-line-args": "^2.5.1",
|
|
"yaml": "^2.3.3",
|
|
"zod": "^3.22.4"
|
|
}
|
|
}
|