react-vmodel
Version:
a vue v-model like usage for react with ts prompt
58 lines (57 loc) • 1.68 kB
JSON
{
"name": "react-vmodel",
"version": "1.3.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"homepage": "https://github.com/leafio/react-vmodel",
"description": "a vue v-model like usage for react with ts prompt",
"files": [
"./lib/*"
],
"types": "./lib/index.d.ts",
"main": "./lib/index.umd.cjs",
"module": "./lib/index.js",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.js",
"require": "./lib/index.umd.cjs"
}
},
"license": "MIT",
"keywords": [
"v-model",
"vmodel",
"react",
"two-way",
"data binding"
],
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.11.4",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"@vitejs/plugin-react": "^4.5.1",
"@vitejs/plugin-react-swc": "^3.10.1",
"eslint": "^8.56.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.20",
"react": "^19",
"react-dom": "^19",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vite": "^5.0.11",
"vite-plugin-dts": "^3.7.1"
},
"peerDependencies": {
"react": "^19",
"react-dom": "^19"
}
}