@zensen/router
Version:
A declarative router for native web components
46 lines (45 loc) • 1.11 kB
JSON
{
"name": "@zensen/router",
"version": "2.0.1",
"type": "module",
"license": "MIT",
"description": "A declarative router for native web components",
"author": "Travis True <travis.true08@gmail.com> (http://www.travistrue.io)",
"main": "dist/index.js",
"files": [
"dist/",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zensen/router.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "mkdir -p dist && terser src/index.js -o dist/index.js --compress --mangle --source-map",
"clean": "rm -rf node_modules dist",
"reinstall": "bun run clean && bun install",
"prepublishOnly": "bun run build",
"test": "vitest run --coverage",
"test:watch": "vitest --coverage"
},
"keywords": [
"component",
"declarative",
"route",
"router",
"routing",
"zen",
"zensen"
],
"devDependencies": {
"@vitest/coverage-v8": "3.2.4",
"@zensen/eslint-config": "^1.0.0",
"eslint": "^5.16.0",
"jsdom": "^26.1.0",
"terser": "^5.16.0",
"vitest": "^3.2.4"
}
}