arrow-express
Version:
Library to bootstrap express applications with zero configuration
63 lines (62 loc) • 1.61 kB
JSON
{
"name": "arrow-express",
"version": "4.0.0",
"description": "Library to bootstrap express applications with zero configuration",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs.js"
}
},
"directories": {
"lib": "lib"
},
"scripts": {
"build": "vite build --config vite.config.lib.ts",
"build:watch": "vite build --config vite.config.lib.ts --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest --coverage",
"lint": "./node_modules/.bin/eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mighty683/arrow-express.git"
},
"optionalDependencies": {
"express": "^5.1.0"
},
"devDependencies": {
"@changesets/cli": "2.28.1",
"@types/express": "5.0.3",
"@types/node": " 22.13.5",
"@typescript-eslint/eslint-plugin": "8.24.1",
"@typescript-eslint/parser": "8.24.1",
"eslint": "9.21.0",
"express": "5.1.0",
"nodemon": "3.1.9",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.7.3",
"vite": "^6.3.5",
"vite-plugin-dts": "^4.5.4",
"vitest": "^3.0.6"
},
"keywords": [
"Express",
"Functional",
"Arrow",
"Library"
],
"author": "Soldev - Tomasz Szarek",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mighty683/arrow-express/issues"
},
"homepage": "https://github.com/Mighty683/arrow-express#readme"
}