mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-28 18:16:20 +01:00
* 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
58 lines
1.9 KiB
JSON
58 lines
1.9 KiB
JSON
{
|
|
"private": true,
|
|
"workspaces": [
|
|
"packages/*",
|
|
"site"
|
|
],
|
|
"scripts": {
|
|
"build": "yarn lucide build && yarn lucide-react build && yarn lucide-vue build",
|
|
"test": "yarn lucide build:icons && yarn lucide-react build:icons && yarn lucide-vue build:icons && jest",
|
|
"lucide": "yarn workspace lucide",
|
|
"lucide-react": "yarn workspace lucide-react",
|
|
"lucide-vue": "yarn workspace lucide-vue",
|
|
"build:icons": "babel-node ./scripts/buildIcons.js --presets @babel/env",
|
|
"optimize": "babel-node ./scripts/optimizeSvgs.js --presets @babel/env",
|
|
"addtags": "babel-node ./scripts/addMissingKeysToTags.js --presets @babel/env"
|
|
},
|
|
"devDependencies": {
|
|
"@ampproject/rollup-plugin-closure-compiler": "^0.25.2",
|
|
"@atomico/rollup-plugin-sizes": "^1.1.4",
|
|
"@babel/cli": "^7.10.5",
|
|
"@babel/core": "^7.11.1",
|
|
"@babel/node": "^7.13.10",
|
|
"@babel/plugin-transform-runtime": "^7.11.5",
|
|
"@babel/preset-env": "^7.11.0",
|
|
"@rollup/plugin-babel": "^5.0.0",
|
|
"@rollup/plugin-commonjs": "^17.1.0",
|
|
"@rollup/plugin-node-resolve": "^11.2.0",
|
|
"@rollup/plugin-replace": "^2.4.1",
|
|
"babel-jest": "^26.6.3",
|
|
"babel-plugin-add-import-extension": "^1.4.3",
|
|
"core-js": "3",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-airbnb-base": "^12.1.0",
|
|
"eslint-config-prettier": "^2.9.0",
|
|
"eslint-plugin-import": "^2.5.0",
|
|
"eslint-plugin-prettier": "^2.5.0",
|
|
"husky": "^4.3.6",
|
|
"jest": "^26.4.2",
|
|
"lint-staged": "^10.5.3",
|
|
"minimist": "^1.2.5",
|
|
"prettier": "1.17.1",
|
|
"rollup": "^2.7.3",
|
|
"rollup-plugin-license": "^2.0.0",
|
|
"rollup-plugin-terser": "^5.2.0",
|
|
"rollup-plugin-visualizer": "^4.1.0",
|
|
"svgo": "^1.3.2",
|
|
"svgson": "^4.1.0"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"icons/*.svg": "npx babel-node ./scripts/optimizeStagedSvgs.js --presets @babel/env"
|
|
}
|
|
}
|