UNPKG

@zerva/core

Version:

🌱 Simple event driven server

62 lines 1.62 kB
{ "name": "@zerva/core", "type": "module", "version": "0.71.0", "description": "🌱 Simple event driven server", "author": { "name": "Dirk Holtwick", "email": "dirk.holtwick@gmail.com", "url": "https://holtwick.de" }, "license": "MIT", "funding": { "type": "GitHub Sponsors ❤", "url": "https://github.com/sponsors/holtwick" }, "keywords": [ "server", "typescript", "event" ], "exports": { ".": { "require": "./dist/index.cjs", "default": "./dist/index.js" } }, "main": "dist/index.cjs", "module": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "engines": { "node": ">=18.0.0" }, "dependencies": { "zeed": "^0.30.1" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/node": "^24.0.1", "tsup": "^8.5.0", "typescript": "^5.8.3", "vitest": "^3.2.3", "@zerva/bin": "0.71.0" }, "scripts": { "build": "pnpm run clean && pnpm run build:tsup", "build:tsup": "tsup src/index.ts", "check": "vue-tsc --noEmit -p ./tsconfig.json", "clean": "rm -rf dist www", "dbld": "zerva demo/zerva.ts --build && ZEED=* ZEED_COLOR=1 node dist/main.mjs", "drun": "ZEED=* ZEED_COLOR=1 zerva demo/zerva.ts", "lint": "eslint .", "lint:fix": "eslint . --fix", "release": "pnpm test && pnpm version patch && pnpm build && pnpm publish --no-git-checks", "reset": "rm -rf node_modules pnpm-lock.yaml dist dist_www www", "start": "pnpm run watch", "test": "ZEED=* vitest --globals --run -r src", "watch": "tsup src/index.ts --watch" } }