* add configs
* Add vue components
* Add documentation
* add alpha release version
* improve npm ignore files
* add tests
* Make style and class attrs work
* 📦 bump version
* Add Icon suffix for component names
* bump version
* Add icon component example
* remove space
* add new build strategy
* Write a better intro
* add other node design
* fix
* add new default template
* add tempalte
* improve code
* small improvements
* small improvements
* move files
* Connect lucide with lucide-react
* Add support for vue
* Add licenses to packages
* Fix tests
* refactor build scripts
* Minor code fixes
* update homepage readme
* Update footer text
* Add a better introduction to packages
* Split up in tempaltes
* Add new types build file
* Setup workflow file
* update readme
* update
* Fix build
* remove debug code
* Add check if svgs have duplicated children
* Add check if their are no children
* small fixes
* last fixes in the build
* Move script to packages folder
* Fix tests and add types for lucide
* Add rule to package.json
* add types in build
* add npm ignore
* update package.jsons
42 lines
1.4 KiB
JSON
42 lines
1.4 KiB
JSON
{
|
|
"name": "lucide-vue",
|
|
"version": "0.14.0",
|
|
"author": "Eric Fennis",
|
|
"description": "Lucide Vue Package",
|
|
"license": "ISC",
|
|
"homepage": "https://lucide.dev",
|
|
"bugs": "https://github.com/lucide-icons/lucide/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/lucide-icons/lucide.git",
|
|
"directory": "packages/lucide-vue"
|
|
},
|
|
"amdName": "lucide-vue",
|
|
"source": "build/lucide-vue.js",
|
|
"main": "dist/cjs/lucide-vue.js",
|
|
"main:umd": "dist/umd/lucide-vue.js",
|
|
"module": "dist/esm/lucide-vue.js",
|
|
"unpkg": "dist/umd/lucide-vue.min.js",
|
|
"dependencies": {
|
|
"vue": "^2.6.12"
|
|
},
|
|
"scripts": {
|
|
"build": "yarn clean && yarn build:icons && yarn build:es && yarn build:bundles",
|
|
"clean": "rm -rf dist && rm -rf ./src/icons/*.js",
|
|
"build:icons": "yarn --cwd ../../ build:icons --output=../packages/lucide-vue/src --templateSrc=../packages/lucide-vue/scripts/exportTemplate",
|
|
"build:es": "yarn --cwd ../../ babel packages/lucide-vue/src -d packages/lucide-vue/dist/esm",
|
|
"build:bundles": "yarn --cwd ../../ rollup -c packages/lucide-vue/rollup.config.js",
|
|
"test": "jest",
|
|
"test:watch": "jest --watchAll"
|
|
},
|
|
"devDependencies": {
|
|
"@vue/test-utils": "^1.1.2",
|
|
"jest-serializer-vue": "^2.0.2",
|
|
"vue-jest": "^3.0.7",
|
|
"vue-template-compiler": "^2.6.12"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^2.6.12"
|
|
}
|
|
}
|