UNPKG

jetpath

Version:

A performance-first cross-runtime API framework without the boilerplate

77 lines (76 loc) 2.02 kB
{ "name": "jetpath", "version": "1.10.9", "description": "A performance-first cross-runtime API framework without the boilerplate", "main": "dist/index.js", "type": "module", "files": [ "dist/index.d.ts", "dist/primitives", "dist/extracts", "dist/jetpath-doc.html", "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.1.2", "gts": "^7.0.0", "mitata": "^1.0.34", "typescript": "^5.6.3" }, "docmach": { "docs-directory": "docs/docs", "assets-folder": "docs/assets", "build-directory": "docs/build" } }