This commit is contained in:
jetstream0
2023-11-01 07:39:08 +00:00
commit e85193dcb4
23 changed files with 1484 additions and 0 deletions

28
package.json Normal file
View File

@@ -0,0 +1,28 @@
{
"name": "pla-den-tor",
"version": "0.0.1",
"description": "private file hosting on TOR",
"main": "build.js",
"scripts": {
"compile": "tsc -p .",
"build": "node build.js",
"build-quick": "node build.js --quick",
"host": "node host.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jetstream0/pla-den-tor.git"
},
"author": "jetstream0/prussia",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/jetstream0/pla-den-tor/issues"
},
"homepage": "https://github.com/jetstream0/pla-den-tor#readme",
"dependencies": {
"dotenv": "^16.3.1"
},
"devDependencies": {
"@types/node": "^20.4.5"
}
}