chore: clean-up package.json / pubspec.yaml files

This commit is contained in:
Pascal Jufer 2023-09-28 00:10:54 +02:00
parent d5bd5a075f
commit 8397c403c0
5 changed files with 103 additions and 95 deletions

View file

@ -2,22 +2,6 @@
"name": "iconoir",
"version": "6.11.0",
"description": "The biggest open source icon library with tons of free icons.",
"type": "module",
"files": [
"css",
"icons"
],
"scripts": {
"lint": "eslint \"./bin/**/*.{cjs,js}\"",
"lint:fix": "pnpm run lint --fix",
"build": "node ./bin/build.js",
"prepublish-all": "node ./bin/prepublish.js",
"dist": "pnpm -r --filter './packages/**' run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iconoir-icons/iconoir.git"
},
"keywords": [
"free",
"icons",
@ -27,11 +11,28 @@
"flutter",
"css"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lucaburgio/iconoir/issues"
},
"homepage": "https://iconoir.com",
"repository": {
"type": "git",
"url": "https://github.com/iconoir-icons/iconoir.git"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
},
"license": "MIT",
"type": "module",
"files": [
"css",
"icons"
],
"scripts": {
"build": "node ./bin/build.js",
"dist": "pnpm -r --filter './packages/**' run dist",
"lint": "eslint \"./bin/**/*.{cjs,js}\"",
"lint:fix": "pnpm run lint --fix",
"prepublish-all": "node ./bin/prepublish.js"
},
"devDependencies": {
"@atomist/yaml-updater": "^1.0.2",
"@svgr/cli": "^8.1.0",
@ -47,5 +48,5 @@
"semver": "^7.5.4",
"svg-parser": "^2.0.4"
},
"packageManager": "pnpm@8.7.6"
"packageManager": "pnpm@8.8.0"
}

View file

@ -2,8 +2,9 @@ name: iconoir_flutter
description: Flutter library for Iconoir icon set
version: 6.11.0
homepage: https://iconoir.com
repository: https://github.com/lucaburgio/iconoir.git
issue_tracker: https://github.com/lucaburgio/iconoir/issues
repository: https://github.com/iconoir-icons/iconoir
funding:
- https://opencollective.com/iconoir
environment:
sdk: '>=2.17.1 <3.0.0'

View file

@ -2,9 +2,27 @@
"name": "iconoir-react-native",
"version": "6.11.0",
"description": "React Native library for Iconoir icon set",
"keywords": [
"icons",
"svg",
"library",
"react-native"
],
"homepage": "https://iconoir.com",
"repository": {
"type": "git",
"url": "https://github.com/iconoir-icons/iconoir.git",
"directory": "packages/iconoir-react-native"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
},
"license": "MIT",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
@ -12,32 +30,16 @@
"dist": "tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iconoir-icons/iconoir.git"
},
"keywords": [
"icons",
"svg",
"library",
"react-native"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lucaburgio/iconoir/issues"
},
"sideEffects": false,
"homepage": "https://iconoir.com",
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18",
"react-native": ">=0.50.0",
"react-native-svg": ">=12.1.1"
},
"devDependencies": {
"@types/react": "^18.2.22",
"@types/react-native": "^0.72.2",
"react": "^18.2.0",
"react-native-svg": "^13.14.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18",
"react-native": ">=0.50.0",
"react-native-svg": ">=12.1.1"
}
}

View file

@ -2,9 +2,24 @@
"name": "iconoir-react",
"version": "6.11.0",
"description": "React library for Iconoir icon set",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/esm/index.mjs",
"keywords": [
"icons",
"svg",
"library",
"react"
],
"homepage": "https://iconoir.com",
"repository": {
"type": "git",
"url": "https://github.com/iconoir-icons/iconoir.git",
"directory": "packages/iconoir-react"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"react-server": "./dist/esm/server/index.mjs",
@ -19,6 +34,9 @@
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"module": "dist/esm/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
@ -26,28 +44,12 @@
"dist": "rm -rf dist && tsc -p tsconfig.json && tsc -p tsconfig.esm.json && node scripts/fix-esm.js && rm -rf dist/server",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iconoir-icons/iconoir.git"
},
"keywords": [
"icons",
"svg",
"library",
"react"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lucaburgio/iconoir/issues"
},
"sideEffects": false,
"homepage": "https://iconoir.com",
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18"
},
"devDependencies": {
"@types/react": "^18.2.22",
"react": "^18.2.0",
"typescript": "^5.2.2"
},
"peerDependencies": {
"react": "^16.8.6 || ^17 || ^18"
}
}
}

View file

@ -2,9 +2,24 @@
"name": "@iconoir/vue",
"version": "6.11.0",
"description": "Vue library for Iconoir icon set",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"module": "./dist/esm/index.mjs",
"keywords": [
"icons",
"svg",
"library",
"vue"
],
"homepage": "https://iconoir.com",
"repository": {
"type": "git",
"url": "https://github.com/iconoir-icons/iconoir.git",
"directory": "packages/iconoir-vue"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/iconoir"
},
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": {
@ -18,6 +33,9 @@
"default": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
@ -25,25 +43,16 @@
"dist": "vite build",
"prepublish": "npm run dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iconoir-icons/iconoir.git"
},
"keywords": [
"icons",
"svg",
"library",
"vue"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lucaburgio/iconoir/issues"
},
"sideEffects": false,
"homepage": "https://iconoir.com",
"dependencies": {
"vue-demi": "^0.14.6"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"terser": "^5.20.0",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.4",
"vue": "^3.3.4"
},
"peerDependencies": {
"@vue/composition-api": ">=1.0.0-rc.1",
"vue": "^2.6.11 || >=3.0.0"
@ -52,12 +61,5 @@
"@vue/composition-api": {
"optional": true
}
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"terser": "^5.20.0",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.5.4",
"vue": "^3.3.4"
}
}
}