actions-test/package.json

59 lines
1.8 KiB
JSON
Raw Normal View History

2023-02-28 14:44:10 +01:00
{
"name": "outbag-server",
"version": "0.0.1",
"description": "Did you know that you can host your own outbag instance?",
"main": "dist/main.js",
2023-03-07 21:16:53 +01:00
"bin": "dist/main.js",
2023-02-28 14:44:10 +01:00
"type": "module",
2023-03-07 21:16:53 +01:00
"directories": {
"dist": "dist"
},
"files": [
"dist/*"
],
"engines": {
"node": ">= 16"
},
2023-02-28 14:44:10 +01:00
"scripts": {
2023-03-07 21:16:53 +01:00
"prepublish": "tsc",
2023-03-01 16:14:46 +01:00
"main": "tsc && node . -c config.juml",
2023-03-01 23:47:21 +01:00
"debug": "tsc && node . -c config.juml -d",
2023-03-02 15:34:56 +01:00
"setup": "tsc && node . -c config.juml -s",
"bundleRelease": "mkdir build/bundle & esbuild src/main.ts --platform=node --bundle --minify --outfile=build/bundle/main.js",
2023-03-02 15:41:52 +01:00
"build-linux-x64": "npm run bundleRelease && mkdir build/bin & pkg -t node18-linux-x64 -o build/bin/outbag-linux-x64 build/bundle/main.js",
2023-03-07 21:46:02 +01:00
"build-linux-arm64": "npm run bundleRelease && mkdir build/bin & pkg -t node18-linux-arm64 -o build/bin/outbag-linux-arm64 build/bundle/main.js"
2023-02-28 14:44:10 +01:00
},
"repository": {
"type": "git",
"url": "git+https://codeberg.org/outbag/server.git"
},
"keywords": [
"outbag"
],
"author": "jusax23, comcloudway",
"license": "AGPL-3.0-only",
"devDependencies": {
2023-03-01 23:47:21 +01:00
"@types/auth-header": "^1.0.2",
2023-03-01 16:14:46 +01:00
"@types/cors": "^2.8.13",
2023-02-28 14:44:10 +01:00
"@types/express": "^4.17.17",
"@types/node": "^18.11.18",
"@types/pg": "^8.6.6",
"@types/prompts": "^2.4.2",
2023-03-01 16:14:46 +01:00
"@types/ws": "^8.5.4",
2023-02-28 14:44:10 +01:00
"esbuild": "^0.17.10",
"pkg": "^5.8.0",
"typescript": "^4.9.4"
},
"dependencies": {
2023-03-01 23:47:21 +01:00
"auth-header": "^1.0.0",
2023-02-28 14:44:10 +01:00
"commander": "^10.0.0",
2023-03-01 16:14:46 +01:00
"cors": "^2.8.5",
2023-03-02 15:34:56 +01:00
"dblang": "https://jusax.de/git/attachments/f23f8128-4fde-4ec6-a8cd-cfc5068b2cfd",
2023-02-28 14:44:10 +01:00
"express": "^4.18.2",
"juml": "https://jusax.de/git/attachments/208913c5-2851-4b86-a53d-ca99fed168cc",
"nman": "https://jusax.de/git/attachments/5333948b-fe6b-45d2-9230-ca388f6a89bc",
"prompts": "^2.4.2",
"ws": "^8.12.1"
}
}