leblebijs/package.json

27 lines
906 B
JSON
Raw Permalink Normal View History

2022-05-21 02:31:26 -05:00
{
"name": "leblebi.js",
"version": "0.1.0",
"description": "A simple web server.",
"author": "Kaan Genc <npm@bgenc.net> (https://bgenc.net)",
"license": "MIT",
"scripts": {
2022-05-21 03:07:00 -05:00
"build": "esbuild src/index.ts --bundle --platform=node --minify --outfile=lib/index.js",
"dev:lib": "esbuild src/index.ts --bundle --platform=node --watch --sourcemap --outfile=dev/index.js",
"dev:example": "esbuild example/index.ts --bundle --platform=node --watch --sourcemap --outfile=dev/example.js",
2022-05-21 23:20:58 -05:00
"dev": "yarn run dev:lib & yarn run dev:example",
"typecheck": "tsc --noEmit",
"lint": "eslint --"
2022-05-21 02:31:26 -05:00
},
"devDependencies": {
2022-05-21 23:20:58 -05:00
"@tsconfig/node16": "^1.0.2",
2022-05-21 03:07:00 -05:00
"@types/node": "^17.0.35",
2022-05-21 23:20:58 -05:00
"@typescript-eslint/eslint-plugin": "^5.25.0",
"@typescript-eslint/parser": "^5.25.0",
"esbuild": "^0.14.39",
"eslint": "^8.16.0"
2022-05-21 21:36:48 -05:00
},
"dependencies": {
"tslog": "^3.3.3"
2022-05-21 02:31:26 -05:00
}
}