Files
2025-06-08 16:16:37 +08:00

52 lines
1.3 KiB
JSON

{
"name": "matrix-sob",
"version": "1.0.0",
"main": "src/index.js",
"bin": "src/index.js",
"pkg": {
"scripts": [
"./**/*.js",
"./src/commands/*.js",
"./src/console_commands/*.js",
"./src/util/*.js",
"./src/*.js"
],
"assets": [
"./src/*.json"
],
"__targets": [
"node18-linux-x64",
"node18-win"
],
"__outputPath": "../dist/"
},
"scripts": {
"clean": "rimraf output/",
"clean_plat": "rimraf dist/",
"build": "npm run clean && tsc && copyfiles .env package.json output/",
"build_plat": "npm run clean_plat && mkdirp ./dist && npm run build && npm run platstep2",
"platstep2": "pkg -t node18-win --compress GZip -o ./dist/sob.exe ./output && node output/src/util/setMeta.js",
"quick": "npm run clean && tsc && node ./output/src/index.js"
},
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@matrix-org/matrix-sdk-crypto-nodejs": "^0.3.0-beta.1",
"@matrix-org/olm": "^3.2.15",
"colorts": "^0.1.63",
"dotenv": "^16.5.0",
"matrix-bot-sdk": "^0.7.1",
"node-pager": "^0.3.6",
"rcedit": "^4.0.1",
"rimraf": "^6.0.1",
"tree-kill": "^1.2.2",
"typescript": "^5.8.3",
"winston": "^3.17.0"
},
"devDependencies": {
"mkdirp": "^3.0.1",
"pkg": "^5.8.1"
}
}