sygil-webui/frontend/package.json

35 lines
912 B
JSON

{
"name": "@codedealer/streamlit_template_vue",
"version": "0.1.0",
"description": "Starter template to build Streamlit component with vue 3",
"license": "MIT",
"author": "Thomas Mello",
"repository": {
"type": "git",
"url": "https://github.com/codedealer/streamlit-component-template-vue"
},
"scripts": {
"clean:dist": "rimraf dist",
"dev": "vite --mode dev",
"build": "yarn clean:dist && vite build --mode prod",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"vue": "^3.2.38",
"streamlit-component-lib": "^1.4.0"
},
"devDependencies": {
"@antfu/eslint-config": "^0.18.9",
"@types/node": "^17.0.21",
"@vitejs/plugin-vue": "^2.2.0",
"eslint": "^8.11.0",
"rimraf": "^3.0.2",
"typescript": "^4.5.4",
"vite": "^2.8.0",
"vue": "^3.2.38",
"vue-tsc": "^0.29.8"
}
}