gitmoji/packages/gitmojis/package.json
dependabot[bot] 1cb5cd5888
⬆️ Bump lint-staged from 15.4.3 to 16.1.5 (#1932)
⬆️ Bump lint-staged from 15.4.3 to 16.1.5

Bumps [lint-staged](https://github.com/lint-staged/lint-staged) from 15.4.3 to 16.1.5.
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](https://github.com/lint-staged/lint-staged/compare/v15.4.3...v16.1.5)

---
updated-dependencies:
- dependency-name: lint-staged
  dependency-version: 16.1.5
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-09-23 22:15:43 +02:00

57 lines
1.3 KiB
JSON

{
"name": "gitmojis",
"type": "module",
"version": "3.15.0",
"description": "An emoji guide for your commit messages.",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "nodemon --exec 'pnpm run build' --watch ./src",
"build": "unbuild",
"lint:json": "ajv --spec=draft2020 validate -s ./src/schema.json -d ./src/gitmojis.json",
"lint": "pnpm run lint:json && prettier --check ./src/**/*.{js,json,ts}",
"publishPackage": "npm publish"
},
"devDependencies": {
"ajv-cli": "^5.0.0",
"lint-staged": "^16.1.6",
"nodemon": "^3.1.9",
"prettier": "3.5.3",
"unbuild": "^3.5.0"
},
"author": {
"name": "carloscuesta",
"email": "hi@carloscuesta.me",
"url": "https://carloscuesta.me"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/carloscuesta/gitmoji/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/carloscuesta/gitmoji.git"
},
"homepage": "https://gitmoji.dev",
"keywords": [
"gitmoji",
"emoji",
"carloscuesta",
"commit"
],
"prettier": {
"semi": false,
"singleQuote": true,
"arrowParens": "always"
}
}