Extrahiert Sitzungstermine aus einem PDF und stellt sie als Kalenderdatei zur Verfügung
https://sitzungsapp.twobrain.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.3 KiB
34 lines
1.3 KiB
{ |
|
"name": "sitzungsapp", |
|
"version": "1.2.0", |
|
"description": "Webapp converting the weekly 'Staatsanwaltschaft' assignment PDF to ICS files", |
|
"author": "S1SYPHOS <hello@twobrain.io>", |
|
"homepage": "https://codeberg.org/S1SYPHOS/sitzungsapp", |
|
"main": "windi.config.ts", |
|
"repository": { |
|
"type": "git", |
|
"url": "git+https://codeberg.org/S1SYPHOS/sitzungsapp.git" |
|
}, |
|
"license": "GPL-3.0", |
|
"bugs": { |
|
"url": "https://codeberg.org/S1SYPHOS/sitzungsapp/issues" |
|
}, |
|
"scripts": { |
|
"dev:css": "windicss --config windi.config.ts --dev -to app/assets/styles/main.css", |
|
"build:css": "windicss --config windi.config.ts --minify -to app/assets/styles/main.css", |
|
"dev:js": "esbuild src/main.ts --bundle --target=es6 --sourcemap=inline --watch --outfile=app/assets/scripts/main.js", |
|
"build:js": "esbuild src/main.ts --bundle --target=es6 --minify --outfile=app/assets/scripts/main.js", |
|
"dev": "concurrently \"npm:dev:*\"", |
|
"build": "concurrently \"npm:build:*\"" |
|
}, |
|
"dependencies": { |
|
"alpinejs": "3.4.2", |
|
"windicss": "3.5.4" |
|
}, |
|
"devDependencies": { |
|
"@windicss/plugin-heropatterns": "^0.0.8", |
|
"@windicss/plugin-icons": "^1.0.2", |
|
"concurrently": "^7.2.1", |
|
"esbuild": "^0.14.40" |
|
} |
|
}
|
|
|