feli
Version:
library for making quickly your mini-server for your front-end only web-app
91 lines (90 loc) • 1.93 kB
JSON
{
"name": "feli",
"description": "library for making quickly your mini-server for your front-end only web-app",
"version": "1.0.4",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/charlyoleg2/feli_mono.git"
},
"homepage": "https://charlyoleg2.github.io/feli_mono/",
"author": "charlyoleg",
"license": "ISC",
"keywords": [
"web-app",
"web-ui",
"front-end",
"local installation"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist/",
"dist/**/*.d.ts",
"!dist/**/*.map",
"!dist/**/*.test.*",
"!dist/**/*.spec.*"
],
"engines": {
"node": ">=22.0.0"
},
"tsup": {
"entry": [
"src/index.ts"
],
"format": "esm",
"splitting": false,
"dts": true,
"sourcemap": true,
"clean": true
},
"prettier": {
"useTabs": true,
"singleQuote": true,
"trailingComma": "none",
"printWidth": 100,
"plugins": [],
"overrides": []
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"check": "tsc --noEmit",
"pretty": "prettier --check .",
"format": "prettier --write .",
"lint": "eslint .",
"test:unit": "vitest",
"test:unit:once": "vitest --run",
"ci": "run-s check build pretty lint test:unit:once",
"clean": "rimraf node_modules build dist tmp",
"run-test": "node scr/test-feli.js"
},
"dependencies": {
"@hono/node-server": "^1.19.7",
"fs-extra": "^11.3.3",
"get-port": "^7.1.0",
"hono": "^4.11.3",
"open": "^11.0.0",
"yargs": "^18.0.0"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/eslint__js": "^8.42.3",
"@types/fs-extra": "^11.0.4",
"@types/yargs": "^17.0.35",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"npm-run-all2": "^8.0.4",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.1",
"vitest": "^4.0.16"
}
}