mirror of
https://github.com/tuono-labs/tuono
synced 2026-07-25 12:52:47 -07:00
58 lines
1.5 KiB
JSON
58 lines
1.5 KiB
JSON
{
|
|
"name": "vite-plugin-fs-router",
|
|
"version": "0.1.0",
|
|
"description": "",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "vite dev",
|
|
"build": "vite build",
|
|
"lint": "eslint --ext .ts,.tsx ./src -c ../../.eslintrc",
|
|
"format": "prettier --ignore-unknown '**/*'",
|
|
"test": "vitest --typecheck --watch=false",
|
|
"types": "tsc --noEmit"
|
|
},
|
|
"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"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src/**"
|
|
],
|
|
"sideEffects": false,
|
|
"keywords": [],
|
|
"type": "module",
|
|
"author": "Valerio Ageno",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@babel/core": "^7.24.4",
|
|
"@babel/generator": "^7.23.6",
|
|
"@babel/plugin-syntax-jsx": "^7.24.1",
|
|
"@babel/plugin-syntax-typescript": "^7.24.1",
|
|
"@babel/plugin-transform-react-jsx": "^7.23.4",
|
|
"@babel/plugin-transform-typescript": "^7.24.1",
|
|
"@babel/template": "^7.24.0",
|
|
"@babel/traverse": "^7.24.1",
|
|
"@babel/types": "^7.24.0",
|
|
"@types/babel__core": "^7.20.5",
|
|
"@vitejs/plugin-react": "^4.2.1",
|
|
"rollup-plugin-preserve-directives": "^0.4.0",
|
|
"vite": "^5.2.10",
|
|
"vite-plugin-dts": "^3.9.0",
|
|
"vite-plugin-externalize-deps": "^0.8.0",
|
|
"vitest": "^1.5.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/babel-traverse": "^6.25.10"
|
|
}
|
|
}
|