Files
wenzi/frontend/package.json
Your Name 5f5597ef0f
Some checks failed
CI / build_test_package (push) Has been cancelled
CI / auto_merge (push) Has been cancelled
chore: sync project snapshot for gitea/github upload
2026-03-26 15:59:53 +08:00

83 lines
2.2 KiB
JSON

{
"name": "@mosquito/vue-enhanced",
"version": "2.0.0",
"description": "Enhanced Vue 3 components for Mosquito sharing platform with error handling, loading states, and improved UX",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist",
"src",
"README.md"
],
"keywords": [
"vue",
"vue3",
"components",
"sharing",
"mosquito",
"referral",
"poster",
"leaderboard"
],
"author": "Mosquito Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mosquito/project.git",
"directory": "frontend"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"type-check": "vue-tsc -p tsconfig.check.json --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"test:e2e": "cd e2e && npx playwright test --config=playwright.config.ts",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:report": "playwright show-report e2e/e2e-report",
"test:e2e:install": "playwright install chromium firefox webkit",
"test:cypress": "cd h5 && npm run cypress:open",
"test:cypress:run": "cd h5 && npm run cypress:run"
},
"peerDependencies": {
"vue": "^3.3.0"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^20.10.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.0",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^9.19.0",
"playwright": "^1.58.2",
"postcss": "^8.4.33",
"prettier": "^3.1.0",
"tailwindcss": "^3.4.1",
"typescript": "~5.3.0",
"vite": "^5.0.0",
"vue": "^3.3.0",
"vue-tsc": "^1.8.25"
},
"engines": {
"node": ">=16.0.0"
}
}