2024-07-08 21:39:00 +02:00
|
|
|
{
|
|
|
|
|
"name": "tuono-fs-router-vite-plugin",
|
2025-02-12 18:34:06 +01:00
|
|
|
"version": "0.17.8",
|
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-01-02 13:35:22 +01:00
|
|
|
"format": "prettier --write --ignore-unknown --ignore-path ../../.prettierignore .",
|
|
|
|
|
"format:check": "prettier --check --ignore-unknown --ignore-path ../../.prettierignore .",
|
2024-07-08 21:39:00 +02:00
|
|
|
"types": "tsc --noEmit",
|
|
|
|
|
"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",
|
2024-12-23 18:28:06 +01:00
|
|
|
"directory": "packages/tuono-fs-router-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",
|
|
|
|
|
"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"
|
|
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@babel/core": "^7.24.4",
|
|
|
|
|
"@babel/types": "^7.24.0",
|
|
|
|
|
"prettier": "^3.2.4",
|
2025-02-08 15:01:26 +00:00
|
|
|
"vite": "^5.4.14"
|
2024-07-08 21:39:00 +02:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2024-12-23 18:20:29 +01:00
|
|
|
"@tanstack/config": "0.7.13",
|
2025-02-05 09:28:18 +01:00
|
|
|
"@types/babel__core": "7.20.5",
|
2025-02-05 06:42:15 +01:00
|
|
|
"vitest": "2.1.9"
|
2024-07-08 21:39:00 +02:00
|
|
|
}
|
|
|
|
|
}
|