packages_speech_bubble/package.json

67 lines
1.9 KiB
JSON
Raw Normal View History

2025-01-25 07:08:20 +02:00
{
"name": "image-speech-bubble-transformer",
2025-01-25 07:53:03 +02:00
"version": "1.1.0",
2025-01-25 07:08:20 +02:00
"description": "TypeScript library for applying speech bubble effects to images",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"dist/assets",
2025-01-25 07:08:20 +02:00
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "mkdir -p dist/assets",
"build": "npm run clean && npm run prebuild && cp src/assets/* dist/assets/ && tsc",
"publish:local": "npm run build && npm pack",
"publish:npm": "npm run build && npm publish",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
2025-01-25 07:08:20 +02:00
},
"repository": {
"type": "git",
"url": "https://f0rk.systems/reso/packages_speech_bubble.git"
},
"keywords": [
"image",
"processing",
"speech-bubble",
"transformer",
"sharp",
"image-manipulation"
],
"author": "proto <proto@throwing.lol>",
"license": "MIT",
"bugs": {
"url": "https://f0rk.systems/reso/packages_speech_bubble/issues"
},
"homepage": "https://f0rk.systems/reso/packages_speech_bubble#readme",
"dependencies": {
"sharp": "^0.32.6"
},
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.17.16",
"@types/sharp": "^0.31.1",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.3",
"globals": "^15.14.0",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"typescript-eslint": "^8.21.0"
},
"publishConfig": {
"access": "public"
}
2025-01-25 07:44:29 +02:00
}