Files
tuono/packages/tuono/package.json
T
renovate[bot] 3e07d57956 chore(deps): update node.js to v22.17.1 (#808)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2025-07-20 18:09:16 +02:00

102 lines
2.7 KiB
JSON

{
"name": "tuono",
"version": "0.19.7",
"description": "Superfast React fullstack framework",
"homepage": "https://tuono.dev",
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"lint": "eslint .",
"format": "prettier --check --ignore-unknown --ignore-path ../../.prettierignore .",
"format:fix": "prettier --write --ignore-unknown --ignore-path ../../.prettierignore .",
"typecheck": "tsc --noEmit",
"test:watch": "vitest",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tuono-labs/tuono.git",
"directory": "packages/tuono"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"main": "dist/esm/index.js",
"module": "dist/esm/index.js",
"exports": {
"./build": {
"types": "./dist/esm/build/index.d.ts",
"default": "./dist/esm/build/index.js"
},
"./build-client": {
"types": "./dist/esm/build-client/index.d.ts"
},
"./config": {
"types": "./dist/esm/config/index.d.ts",
"default": "./dist/esm/config/index.js"
},
"./ssr": {
"types": "./dist/esm/ssr/index.d.ts",
"default": "./dist/esm/ssr/index.js"
},
"./hydration": {
"types": "./dist/esm/hydration/index.d.ts",
"default": "./dist/esm/hydration/index.js"
},
".": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"bin": {
"tuono-dev-ssr": "./bin/dev-ssr.js",
"tuono-dev-watch": "./bin/watch.js",
"tuono-build-prod": "./bin/build-prod.js",
"tuono-build-config": "./bin/build-config.js"
},
"files": [
"dist",
"src",
"README.md",
"bin/**"
],
"peerDependencies": {
"react": ">=19.0.0",
"react-dom": ">=19.0.0"
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/plugin-syntax-typescript": "^7.24.1",
"@rollup/plugin-inject": "^5.0.5",
"@vitejs/plugin-react-swc": "^3.8.0",
"fast-text-encoding": "^1.0.6",
"tuono-react-vite-plugin": "workspace:*",
"tuono-router": "workspace:*",
"url-search-params-polyfill": "^8.2.5",
"vite": "^6.1.1",
"web-streams-polyfill": "^4.0.0"
},
"devDependencies": {
"@types/babel__core": "7.20.5",
"@types/babel__traverse": "7.20.7",
"@types/node": "22.16.5",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"vite-config": "workspace:*",
"vitest": "3.2.4"
},
"sideEffects": false,
"keywords": [
"react",
"typescript",
"fullstack",
"framework",
"rust"
],
"author": "Valerio Ageno",
"license": "MIT"
}