gitmoji/packages/gitmojis/package.json
dependabot[bot] ea9948ccd5
⬆️ Bump unbuild from 2.0.0 to 3.3.1 (#1845)
⬆️ Bump unbuild from 2.0.0 to 3.3.1

Bumps [unbuild](https://github.com/unjs/unbuild) from 2.0.0 to 3.3.1.
- [Release notes](https://github.com/unjs/unbuild/releases)
- [Changelog](https://github.com/unjs/unbuild/blob/main/CHANGELOG.md)
- [Commits](https://github.com/unjs/unbuild/compare/v2.0.0...v3.3.1)

---
updated-dependencies:
- dependency-name: unbuild
  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-01-18 09:00:27 +00:00

57 lines
1.3 KiB
JSON

{
"name": "gitmojis",
"type": "module",
"version": "3.14.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": "^15.2.10",
"nodemon": "^3.1.7",
"prettier": "3.4.2",
"unbuild": "^3.3.1"
},
"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"
}
}