gitmoji/packages/gitmojis/package.json
dependabot[bot] c09646d8b5
⬆️ Bump unbuild from 1.2.0 to 1.2.1 (#1428)
⬆️ Bump unbuild from 1.2.0 to 1.2.1

Bumps [unbuild](https://github.com/unjs/unbuild) from 1.2.0 to 1.2.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/v1.2.0...v1.2.1)

---
updated-dependencies:
- dependency-name: unbuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-04-17 13:52:52 +02:00

57 lines
1.3 KiB
JSON

{
"name": "gitmojis",
"type": "module",
"version": "3.13.4",
"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 'yarn build' --watch ./src",
"build": "unbuild",
"lint:json": "ajv --spec=draft2020 validate -s ./src/schema.json -d ./src/gitmojis.json",
"lint": "yarn run lint:json && prettier --check ./src/**/*.{js,json,ts}",
"publishPackage": "npm publish"
},
"devDependencies": {
"ajv-cli": "^5.0.0",
"lint-staged": "^13.2.1",
"nodemon": "^2.0.22",
"prettier": "2.8.7",
"unbuild": "^1.2.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"
}
}