vite-plugin-favicon2
Version:
Create and manage favicons for vite bundles, mostly compatible with the config of favicons-webpack-plugin
157 lines (156 loc) • 4.4 kB
JSON
{
"name": "vite-plugin-favicon2",
"version": "1.1.5",
"description": "Create and manage favicons for vite bundles, mostly compatible with the config of favicons-webpack-plugin",
"type": "module",
"scripts": {
"dev": "npm run build -- --watch",
"build": "tsup src/index.ts --sourcemap --dts --format cjs,esm",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"lint": "run-s lint:*",
"lint:typescript": "eslint src --ext .ts --fix",
"lint:markdown": "markdownlint-cli2-fix \"**/*.md\" \"#node_modules\" \"#CHANGELOG.md\"",
"test": "run-s test:*",
"test:lint": "eslint src --ext .ts",
"test:unit": "jest -c config/jest.config.ts -b --forceExit --coverage --runInBand ",
"watch:test": "jest -c config/jest.config.ts -b --forceExit --runInBand --watch",
"cov:send": "run-s build test && codecov",
"doc": "run-s doc:html && open-cli build/docs/index.html",
"doc:html": "typedoc src/ --exclude **/*.test.ts --target ES6 --mode file --out build/docs",
"doc:json": "typedoc src/ --exclude **/*.test.ts --target ES6 --mode file --json build/docs/typedoc.json",
"reset-hard": "git clean -dfx && git reset --hard && npm i",
"prepare-release": "run-s reset-hard test doc:html version doc:publish",
"ci:validate": "rm -rf node_modules && npm ci && npm run test",
"prepublishOnly": "run-s pinst:disable ci:validate build",
"semantic-release": "semantic-release",
"install:husky": "is-ci || husky install",
"pinst:disable": "pinst --disable",
"postpublish": "pinst --enable"
},
"repository": {
"type": "git",
"url": "git+https://github.com/khalwat/vite-plugin-favicon.git"
},
"keywords": [
"vite-plugin",
"favicon",
"favicons",
"image",
"generate"
],
"maintainers": [
{
"name": "Joshua Hemphill",
"email": "jhemphill@tecnicocorp.com",
"url": "https://joshuahemphill.com"
},
{
"name": "Andrew Welch",
"email": "andrew@nystudio107.com",
"url": "https://nystudio107.com/"
}
],
"author": {
"name": "Joshua Hemphill",
"email": "jhemphill@tecnicocorp.com",
"url": "https://joshuahemphill.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/khalwat/vite-plugin-favicon/issues"
},
"homepage": "https://github.com/khalwat/vite-plugin-favicon#readme",
"files": [
"dist",
"mod.ts",
"CHANGELOG.md",
"LICENSE",
"SECURITY.md",
"README.md"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"peerDependencies": {
"vite": ">=2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@types/favicons": "^6.2.1",
"@types/find-root": "^1.1.2",
"@types/jest": "^26.0.23",
"@types/node": "^14.14.43",
"@types/parse-author": "^2.0.0",
"@types/parse5": "^6.0.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"codecov": "^3.8.2",
"commitizen": "^4.2.3",
"conventional-changelog-cli": "^2.1.1",
"cspell": "^5.3.12",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.25.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"gh-pages": "^3.1.0",
"husky": "^5.2.0",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"markdownlint-cli2": "^0.1.3",
"npm-run-all": "^4.1.5",
"open-cli": "^6.0.1",
"pinst": "^2.1.6",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.2",
"semantic-release-license": "^1.0.2",
"ts-jest": "^26.5.5",
"ts-node": "^9.1.1",
"tsup": "^4.10.1",
"typedoc": "^0.20.36",
"typescript": "^4.2.4",
"vite": "^2.2.3"
},
"dependencies": {
"favicons": "^6.2.1",
"find-root": "^1.1.0",
"parse-author": "^2.0.0",
"parse5": "^6.0.1"
},
"publishConfig": {
"access": "public"
},
"release": {
"extends": "./config/.releaserc.json"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run test"
}
},
"eslintConfig": {
"extends": "./config/.eslintrc.json"
},
"lint-staged": {
"*.js": [
"eslint --cache --fix",
"git add ."
]
}
}