first commit

This commit is contained in:
Flummi 2025-03-21 15:36:41 +01:00
commit 5e044248de
5 changed files with 128 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
node_modules
config.json
public/b
public/t
public/ca
deleted/b
deleted/t
deleted/ca
tmp

76
package-lock.json generated Normal file
View File

@ -0,0 +1,76 @@
{
"name": "f0ckv3",
"version": "3.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "f0ckv3",
"version": "3.0.0",
"license": "ISC",
"dependencies": {
"cuffeo": "git+ssh://gitea@git.lat:keinBot/cuffeo.git#ts",
"flummpress": "git+ssh://gitea@git.lat:keinBot/flummpress.git#ts",
"postgres": "^3.4.5"
},
"devDependencies": {
"@types/node": "^22.13.11",
"typescript": "^5.8.2"
}
},
"node_modules/@types/node": {
"version": "22.13.11",
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.13.11.tgz",
"integrity": "sha512-iEUCUJoU0i3VnrCmgoWCXttklWcvoCIx4jzcP22fioIVSdTmjgoEvmAO/QPw6TcS9k5FrNgn4w7q5lGOd1CT5g==",
"dev": true,
"license": "MIT",
"dependencies": {
"undici-types": "~6.20.0"
}
},
"node_modules/cuffeo": {
"version": "2.0.0",
"resolved": "git+ssh://gitea@git.lat:keinBot/cuffeo.git#62f45722c4af06a05b1920b6b051e2e97576204b",
"license": "MIT"
},
"node_modules/flummpress": {
"version": "3.0.0",
"resolved": "git+ssh://gitea@git.lat:keinBot/flummpress.git#5c8a4c1edc3236788bba4dd17e8018e3bf5549f3",
"license": "ISC"
},
"node_modules/postgres": {
"version": "3.4.5",
"resolved": "https://registry.npmjs.org/postgres/-/postgres-3.4.5.tgz",
"integrity": "sha512-cDWgoah1Gez9rN3H4165peY9qfpEo+SA61oQv65O3cRUE1pOEoJWwddwcqKE8XZYjbblOJlYDlLV4h67HrEVDg==",
"license": "Unlicense",
"engines": {
"node": ">=12"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/porsager"
}
},
"node_modules/typescript": {
"version": "5.8.2",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.2.tgz",
"integrity": "sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
},
"node_modules/undici-types": {
"version": "6.20.0",
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.20.0.tgz",
"integrity": "sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==",
"dev": true,
"license": "MIT"
}
}
}

26
package.json Normal file
View File

@ -0,0 +1,26 @@
{
"name": "f0ckv3",
"version": "3.0.0",
"description": "f0ck schm0ck",
"repository": {
"type": "git",
"url": "https://git.lat/f0ck/f0ckv3"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"build": "npx tsc",
"start": "node ./dist/index.js"
},
"dependencies": {
"cuffeo": "git+ssh://gitea@git.lat:keinBot/cuffeo.git#ts",
"flummpress": "git+ssh://gitea@git.lat:keinBot/flummpress.git#ts",
"postgres": "^3.4.5"
},
"devDependencies": {
"@types/node": "^22.13.11",
"typescript": "^5.8.2"
}
}

0
src/index.ts Normal file
View File

17
tsconfig.json Normal file
View File

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "es2024",
"module": "ESNext",
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"removeComments": true,
"declaration": true,
"resolveJsonModule": true,
"inlineSourceMap": true
},
"include": ["src"],
"exclude": ["node_modules"]
}