UNPKG

jetpath

Version:

Jetpath - A fast, seamless and minimalist framework for Node, Deno and Bun.js. Embrace the speed and elegance of the next-gen server-side experience.

76 lines (75 loc) 2.07 kB
{ "name": "jetpath", "version": "1.9.3", "description": "Jetpath - A fast, seamless and minimalist framework for Node, Deno and Bun.js. Embrace the speed and elegance of the next-gen server-side experience.", "main": "dist/index.js", "type": "module", "files": [ "dist/index.d.ts", "dist/primitives", "dist/extracts", "dist/index.js" ], "repository": { "type": "git", "url": "git+https://github.com/codedynasty-dev/jetpath.git" }, "bin": { "jetpath": "dist/cli.js" }, "keywords": [ "web", "framework", "fast", "simple", "bunjs", "nodejs", "denojs", "expressive", "server", "http", "convention" ], "author": "friday candour fridaycandours@gmail.com", "license": "Apache", "bugs": { "url": "https://github.com/codedynasty-dev/jetpath/issues" }, "homepage": "https://jetpath.codedynasty.dev", "scripts": { "compile": "./pack", "deno": "deno run --allow-all tests/app.jet.ts", "bun": "bun --watch tests/app.jet.ts", "dev": "node --watch --experimental-strip-types example/index.jet.ts", "node": "node --watch --experimental-strip-types example/index.jet.ts", "watch": "tsc src/*.ts --target esnext --watch", "watch:docs": "docmach", "build": "npx docmach build", "lint": "gts lint", "clean": "gts clean", "fix": "gts fix", "prepare": "tsc --project tsconfig.d.json && tsc --project tsconfig.json && bun bundle.ts && npm run build", "pretest": "npm run build", "build:css": " css-purge -i docs/fragments/index.css -o docs/assets/index.css", "posttest": "npm run lint", "bench": "./bench.sh" }, "engines": { "node": ">=14.0.0", "bun": ">=0.1.0" }, "private": false, "devDependencies": { "@types/bun": "^1.1.8", "@types/node": "^22.7.5", "docmach": "^1.0.16", "gts": "^6.0.2", "mitata": "^1.0.34", "typescript": "^5.6.3" }, "docmach": { "docs-directory": "docs/docs", "assets-folder": "docs/assets", "build-directory": "docs/build" } }