zephyrus/package.json
2024-11-16 14:15:32 -03:00

24 lines
560 B
JSON

{
"name": "zephyrus-webserver",
"description": "A simple webserver that supports directory listing.",
"author": "Adrian Victor de Abreu Alves <adrianvictor@disroot.org>",
"version": "1.0.0",
"private": false,
"scripts": {
"start": "ts-node main.ts"
},
"devDependencies": {
"@types/node": "^22.9.0",
"mime-types": "^2.1.35",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"dependencies": {
"mime": "^4.0.4"
},
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"esModuleInterop": true
}
}