mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-29 03:36:20 +01:00
* Add dockerfile * Make the dockerfile work * try docker container for font building * remove workflow dep * add docker compose file * test docker image * update build font flow * update to v3 * cleanup * add filter options for installs * test * revert filter on install * optimize font building * Rename workflow * test and compare workflows * test workflow * test * try with filter * test old script github actions * Fix old script * this works? * test script * finialize font script * remove workspace packages * add pnpm-lock.yaml in workflows
69 lines
2.4 KiB
JSON
69 lines
2.4 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "pnpm -r --filter './packages/**' build",
|
|
"test": "pnpm -r --filter './packages/**' test",
|
|
"lucide": "pnpm --filter lucide",
|
|
"lucide-angular": "pnpm --filter lucide-angular",
|
|
"lucide-react": "pnpm --filter lucide-react",
|
|
"lucide-react-native": "pnpm --filter lucide-react-native",
|
|
"lucide-preact": "pnpm --filter lucide-preact",
|
|
"lucide-vue": "pnpm --filter lucide-vue",
|
|
"lucide-vue-next": "pnpm --filter lucide-vue-next",
|
|
"lucide-svelte": "pnpm --filter lucide-svelte",
|
|
"lucide-static": "pnpm --filter lucide-static",
|
|
"build:icons": "node ./scripts/buildIcons.mjs --templateSrc ./packages/lucide/scripts/exportTemplate.mjs",
|
|
"build:outline-icons": "pnpm --filter outline-svg start",
|
|
"generate:supersprite": "node ./scripts/generateSuperSVG.mjs",
|
|
"optimize": "node ./scripts/optimizeSvgs.mjs",
|
|
"addtags": "node ./scripts/addMissingKeysToTags.mjs",
|
|
"generate:changelog": "node ./scripts/generateChangelog.mjs",
|
|
"postinstall": "husky install",
|
|
"lint": "eslint --ext .ts,.js,.mjs ./{packages/lucide,scripts}"
|
|
},
|
|
"devDependencies": {
|
|
"@atomico/rollup-plugin-sizes": "^1.1.4",
|
|
"@babel/cli": "^7.19.3",
|
|
"@babel/core": "^7.19.6",
|
|
"@babel/node": "^7.20.0",
|
|
"@babel/plugin-transform-runtime": "^7.19.6",
|
|
"@babel/preset-env": "^7.19.4",
|
|
"@rollup/plugin-babel": "^6.0.2",
|
|
"@rollup/plugin-commonjs": "^23.0.2",
|
|
"@rollup/plugin-node-resolve": "^15.0.1",
|
|
"@rollup/plugin-replace": "^5.0.1",
|
|
"@rollup/plugin-typescript": "^9.0.2",
|
|
"babel-jest": "^29.2.2",
|
|
"babel-plugin-add-import-extension": "^1.6.0",
|
|
"core-js": "^3.26.0",
|
|
"esbuild": "^0.15.12",
|
|
"eslint": "^8.26.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"husky": "^8.0.1",
|
|
"jest": "^29.2.2",
|
|
"lint-staged": "^13.0.3",
|
|
"minimist": "^1.2.7",
|
|
"node-fetch": "^3.2.10",
|
|
"prettier": "2.7.1",
|
|
"rollup": "^3.2.4",
|
|
"rollup-plugin-license": "^3.0.1",
|
|
"rollup-plugin-terser": "^7.0.2",
|
|
"rollup-plugin-visualizer": "^5.8.3",
|
|
"svg-outline-stroke": "^1.3.1",
|
|
"svgo": "^3.0.0",
|
|
"svgson": "^5.2.1"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"icons/*.svg": "node ./scripts/optimizeStagedSvgs.mjs"
|
|
},
|
|
"packageManager": "pnpm@7.14.0"
|
|
}
|