ical-online/package.json

35 lines
797 B
JSON
Raw Permalink Normal View History

2023-09-07 17:06:53 +02:00
{
"name": "ical-online",
"version": "1.0.0",
"description": "Read iCal files online",
"main": "./dist/main.js",
"scripts": {
"main": "rm -r dist 2> /dev/null; npx tsc && node ./dist/index.js",
"lint": "npx eslint src",
"format": "npx prettier --check src"
},
"repository": {
"type": "git",
"url": "https://git.mylloon.fr/Anri/ical-online"
},
"keywords": [
"ICS",
"Web",
"Reader"
],
"author": "Mylloon",
"license": "AGPL-3.0-or-later",
"dependencies": {
2023-09-13 23:41:37 +02:00
"@hono/node-server": "~1.1",
"hono": "~3.6",
"node-ical": "~0.16",
"typescript": "~5.2"
2023-09-07 17:06:53 +02:00
},
"devDependencies": {
2023-09-13 23:41:37 +02:00
"@types/node": "~20.6",
"@typescript-eslint/eslint-plugin": "~6.6",
"@typescript-eslint/parser": "~6.6",
"prettier-eslint": "~15.0"
2023-09-07 17:06:53 +02:00
}
}