Cleanup: Remove unnecessary Library folder and keep plug files at root
All checks were successful
Build SilverBullet Plug / build (push) Successful in 31s

This commit is contained in:
2026-02-17 13:45:09 -08:00
parent 62d4ba1006
commit a11c6bd906
947 changed files with 434513 additions and 10 deletions

View File

@@ -0,0 +1,41 @@
{
"name": "ts-ics",
"author": "Neuvernetzung Medienagentur UG",
"version": "2.4.0",
"description": "Create and parse ICS format for TypeScript",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"scripts": {
"lint": "npx @biomejs/biome lint ./src --write",
"type-check": "tsc --noEmit",
"dev": "tsup --watch",
"build": "tsup",
"test": "jest"
},
"license": "MIT",
"dependencies": {
"@standard-schema/spec": "^1.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.8.0",
"@biomejs/biome": "^2.2.4",
"@types/jest": "^30.0.0",
"@types/node": "^24.5.1",
"date-fns": "^4.1.0",
"jest": "^30.1.3",
"jest-environment-jsdom": "^30.1.2",
"jest-environment-node": "^30.1.2",
"ts-jest": "^29.4.2",
"ts-node": "^10.9.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Neuvernetzung/ts-ics.git"
},
"publishConfig": {
"access": "public"
}
}