mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
75c790dd6e
* refactor: create standalone router package * fix: add jsdom to tuono-router package * fix: remove test in tuono vite.config * update turbo to latest * fix: wait build before lint * fix: router types
57 lines
1.4 KiB
JSON
57 lines
1.4 KiB
JSON
{
|
|
"name": "tuono-router",
|
|
"version": "0.8.3",
|
|
"description": "React routing component for the framework tuono. Tuono is the react/rust fullstack framework",
|
|
"scripts": {
|
|
"dev": "vite build --watch",
|
|
"build": "vite build",
|
|
"lint": "eslint --ext .ts,.tsx ./src -c ../../.eslintrc",
|
|
"format": "prettier -u --write --ignore-unknown '**/*'",
|
|
"format:check": "prettier --check --ignore-unknown '**/*'",
|
|
"types": "tsc --noEmit",
|
|
"test:watch": "vitest",
|
|
"test": "vitest run"
|
|
},
|
|
"keywords": [],
|
|
"author": "Valerio Ageno",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"types": "dist/esm/index.d.ts",
|
|
"main": "dist/cjs/index.cjs",
|
|
"module": "dist/esm/index.js",
|
|
"files": [
|
|
"dist",
|
|
"src",
|
|
"README.md"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"import": {
|
|
"types": "./dist/esm/index.d.ts",
|
|
"default": "./dist/esm/index.js"
|
|
},
|
|
"require": {
|
|
"types": "./dist/cjs/index.d.cts",
|
|
"default": "./dist/cjs/index.cjs"
|
|
}
|
|
},
|
|
"./package.json": "./package.json"
|
|
},
|
|
"peerDependencies": {
|
|
"react": ">=16.3.0",
|
|
"react-dom": ">=16.3.0"
|
|
},
|
|
"dependencies": {
|
|
"vite": "^5.2.11",
|
|
"zustand": "4.4.7"
|
|
},
|
|
"devDependencies": {
|
|
"@tanstack/config": "^0.7.11",
|
|
"@testing-library/jest-dom": "^6.4.5",
|
|
"@testing-library/react": "^15.0.7",
|
|
"jsdom": "^24.0.0",
|
|
"prettier": "^3.2.4",
|
|
"vitest": "^1.5.2"
|
|
}
|
|
}
|