@llms-sdk/router
Version:
Lightweight router with signals integration for LLMS SDK
62 lines (61 loc) • 1.27 kB
JSON
{
"name": "@llms-sdk/router",
"version": "2.2.0",
"description": "Lightweight router with signals integration for LLMS SDK",
"type": "module",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
}
},
"files": [
"dist",
"README.md"
],
"scripts": {
"dev": "tsc --watch --pretty",
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@preact/signals": "^1.3.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.8.3",
"vitest": "^3.1.4",
"jsdom": "^25.0.1"
},
"keywords": [
"router",
"signals",
"typescript",
"history-api",
"web-components",
"llms-sdk"
],
"author": "Lenny Miller",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lennylmiller/llms-sdk.git",
"directory": "packages/llms-sdk-router"
},
"homepage": "https://github.com/lennylmiller/llms-sdk#readme",
"bugs": {
"url": "https://github.com/lennylmiller/llms-sdk/issues"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
}
}