2024-07-08 21:39:00 +02:00
|
|
|
{
|
2025-04-28 20:54:40 +02:00
|
|
|
"name": "tuono-react-vite-plugin",
|
2025-05-11 19:11:40 +02:00
|
|
|
"version": "0.19.6",
|
2024-07-08 21:39:00 +02:00
|
|
|
"description": "Plugin for the tuono's file system router. Tuono is the react/rust fullstack framework",
|
2024-11-16 11:08:50 +01:00
|
|
|
"homepage": "https://tuono.dev",
|
2024-07-08 21:39:00 +02:00
|
|
|
"scripts": {
|
|
|
|
|
"dev": "vite build --watch",
|
|
|
|
|
"build": "vite build",
|
2024-12-01 10:07:35 +01:00
|
|
|
"lint": "eslint .",
|
2025-02-16 15:39:25 +01:00
|
|
|
"format": "prettier --check --ignore-unknown --ignore-path ../../.prettierignore .",
|
|
|
|
|
"format:fix": "prettier --write --ignore-unknown --ignore-path ../../.prettierignore .",
|
|
|
|
|
"typecheck": "tsc --noEmit",
|
2024-07-08 21:39:00 +02:00
|
|
|
"test:watch": "vitest",
|
|
|
|
|
"test": "vitest run"
|
|
|
|
|
},
|
2024-11-30 14:15:36 +01:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/tuono-labs/tuono.git",
|
2025-04-28 20:54:40 +02:00
|
|
|
"directory": "packages/tuono-react-vite-plugin"
|
2024-11-30 14:15:36 +01:00
|
|
|
},
|
2024-07-08 21:39:00 +02:00
|
|
|
"keywords": [],
|
|
|
|
|
"author": "Valerio Ageno",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"types": "dist/esm/index.d.ts",
|
2025-02-16 15:39:25 +01:00
|
|
|
"main": "dist/esm/index.js",
|
2024-07-08 21:39:00 +02:00
|
|
|
"module": "dist/esm/index.js",
|
|
|
|
|
"files": [
|
|
|
|
|
"dist",
|
|
|
|
|
"src",
|
|
|
|
|
"README.md"
|
|
|
|
|
],
|
|
|
|
|
"exports": {
|
|
|
|
|
".": {
|
2025-02-16 15:39:25 +01:00
|
|
|
"types": "./dist/esm/index.d.ts",
|
|
|
|
|
"default": "./dist/esm/index.js"
|
2024-07-08 21:39:00 +02:00
|
|
|
},
|
|
|
|
|
"./package.json": "./package.json"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@babel/core": "^7.24.4",
|
|
|
|
|
"@babel/types": "^7.24.0",
|
|
|
|
|
"prettier": "^3.2.4",
|
2025-02-22 21:06:38 +01:00
|
|
|
"vite": "^6.1.1"
|
2024-07-08 21:39:00 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2025-02-05 09:28:18 +01:00
|
|
|
"@types/babel__core": "7.20.5",
|
2025-02-16 15:39:25 +01:00
|
|
|
"vite-config": "workspace:*",
|
2025-04-02 17:26:12 +02:00
|
|
|
"vitest": "3.1.1"
|
2024-07-08 21:39:00 +02:00
|
|
|
}
|
|
|
|
|
}
|