create-kf-component
Version:
create-kf-component is a cli tool that scaffolds Javascript based custom component projects that seamlessly integrate into Kissflow.
32 lines (31 loc) • 939 B
JSON
{
"name": "<%= projectName %>",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"zip": "rm -rf ./custom-page-component.zip ./dist && npm run build && cd ./dist && zip -q -r ../custom-page-component.zip . && rm -rf ../dist",
"build": "vite build",
"preview": "vite preview"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"@kissflow/lowcode-client-sdk": "latest"
},
"engines": {
"node": "^18.0.0 || >=20.0.0"
},
"devDependencies": {
"@types/react": "^18.2.64",
"@types/react-dom": "^18.2.21",
"@vitejs/plugin-react": "^4.2.1",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"vite": "^5.1.6",
"bestzip": "^2.2.1"
}
}