vue-icon-cloud
Version:
A Vue component for rendering an interactive img or word cloud on canvas
81 lines (80 loc) • 2.17 kB
JSON
{
"name": "vue-icon-cloud",
"version": "1.0.4",
"description": "A Vue component for rendering an interactive img or word cloud on canvas",
"license": "MIT",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
},
"./*": "./*"
},
"files": [
"dist",
"src"
],
"scripts": {
"dev": "vite --config playground/vite.config.ts",
"build": "vite build",
"build:demo": "vite build --config playground/vite.config.ts",
"preview": "pnpm build:demo && vite preview --config playground/vite.config.ts",
"deploy:demo": "pnpm build:demo && gh-pages -d playground/dist",
"lint": "eslint \"**/*.{vue,ts,js}\"",
"fix": "eslint --fix \"**/*.{vue,ts,js}\"",
"release": "pnpm build && bumpp",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"git-hook-init": "git init && husky install && husky add .husky/pre-commit 'npm run lint && npm run typecheck'"
},
"author": {
"name": "Peter Roe",
"email": "peterroe@163.com",
"url": "https://github.com/peterroe"
},
"keywords": [
"vue-component",
"vue",
"img-cloud",
"canvas"
],
"repository": {
"type": "git",
"url": "https://github.com/peterroe/vue-icon-cloud"
},
"bugs": {
"url": "https://github.com/peterroe/vue-icon-cloud/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"devDependencies": {
"@antfu/eslint-config": "4.4.0",
"@iconify-json/logos": "^1.2.4",
"@iconify-json/mdi": "^1.2.3",
"@types/node": "^18.18.9",
"@vitejs/plugin-vue": "5.2.1",
"@vue/test-utils": "2.4.1",
"bumpp": "8.2.1",
"eslint": "9.21.0",
"gh-pages": "5.0.0",
"happy-dom": "8.9.0",
"husky": "8.0.3",
"tslib": "^2.8.1",
"typescript": "5.8.2",
"unocss": "^0.57.3",
"unplugin-icons": "^22.1.0",
"vite": "5.4.14",
"vite-plugin-dts": "2.3.0",
"vitest": "3.0.7",
"vue-tsc": "1.8.22"
},
"dependencies": {
"vue": "^3.5.13"
}
}