Dateien nach "/" hochladen

This commit is contained in:
Flummi 2025-03-15 13:25:46 +00:00
parent b392003f0b
commit 776c610574
4 changed files with 39 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
node_modules
package-log.json

20
package.json Normal file
View File

@ -0,0 +1,20 @@
{
"name": "flummpressts",
"version": "2.0.0",
"description": "",
"main": "index.mjs",
"scripts": {
"build": "tsc",
"start": "node ./dist/index.js",
"doc": "typedoc --out docs src"
},
"keywords": [],
"author": "Flummi",
"license": "ISC",
"type": "module",
"devDependencies": {
"@types/node": "^22.13.10",
"typedoc": "^0.27.9",
"typescript": "^5.8.2"
}
}

13
tsconfig.json Normal file
View File

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true
},
"include": ["src"],
"exclude": ["node_modules"]
}

4
typedoc.json Normal file
View File

@ -0,0 +1,4 @@
{
"entryPoints": ["./src/index.ts"],
"out": "docs"
}