2020-06-01 20:51:36 +00:00
|
|
|
{
|
2023-07-10 08:17:49 +00:00
|
|
|
"name": "@push.rocks/smartrouter",
|
2024-10-06 04:57:16 +00:00
|
|
|
"version": "1.1.0",
|
2020-06-01 20:51:36 +00:00
|
|
|
"private": false,
|
2024-04-14 16:14:02 +00:00
|
|
|
"description": "A JavaScript library providing routing capabilities for web applications.",
|
2020-06-01 20:51:36 +00:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
|
|
|
"author": "Lossless GmbH",
|
|
|
|
"license": "MIT",
|
|
|
|
"scripts": {
|
|
|
|
"test": "(tstest test/)",
|
|
|
|
"build": "(tsbuild --web && tsbundle npm --web)",
|
2022-12-31 10:21:29 +00:00
|
|
|
"format": "(gitzone format)",
|
|
|
|
"buildDocs": "tsdoc"
|
2020-06-01 20:51:36 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-09-11 16:43:10 +00:00
|
|
|
"@git.zone/tsbuild": "^2.1.70",
|
|
|
|
"@git.zone/tsbundle": "^2.0.7",
|
|
|
|
"@git.zone/tstest": "^1.0.81",
|
|
|
|
"@push.rocks/tapbundle": "^5.0.15",
|
|
|
|
"@types/node": "^20.6.0"
|
2020-06-01 20:51:36 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-14 16:14:02 +00:00
|
|
|
"@push.rocks/lik": "^6.0.5",
|
|
|
|
"@push.rocks/smartrx": "^3.0.6",
|
2021-09-08 19:46:21 +00:00
|
|
|
"path-to-regexp": "^6.2.0"
|
2020-06-01 20:51:36 +00:00
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"ts/**/*",
|
|
|
|
"ts_web/**/*",
|
|
|
|
"dist/**/*",
|
|
|
|
"dist_*/**/*",
|
|
|
|
"dist_ts/**/*",
|
|
|
|
"dist_ts_web/**/*",
|
|
|
|
"assets/**/*",
|
|
|
|
"cli.js",
|
|
|
|
"npmextra.json",
|
|
|
|
"readme.md"
|
2020-07-15 18:51:17 +00:00
|
|
|
],
|
|
|
|
"browserslist": [
|
|
|
|
"last 1 chrome versions"
|
2022-12-31 10:21:29 +00:00
|
|
|
],
|
2024-04-14 16:14:02 +00:00
|
|
|
"type": "module",
|
|
|
|
"keywords": [
|
|
|
|
"web development",
|
|
|
|
"routing",
|
|
|
|
"single page application",
|
|
|
|
"URL management",
|
|
|
|
"path matching",
|
|
|
|
"query parameters",
|
|
|
|
"browser history"
|
2024-05-29 12:15:51 +00:00
|
|
|
],
|
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartrouter",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://code.foss.global/push.rocks/smartrouter.git"
|
|
|
|
}
|
2024-10-06 04:57:16 +00:00
|
|
|
}
|