66 lines
1.9 KiB
JSON
66 lines
1.9 KiB
JSON
{
|
|
"name": "image-speech-bubble-transformer",
|
|
"version": "1.1.0",
|
|
"description": "TypeScript library for applying speech bubble effects to images",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"files": [
|
|
"dist",
|
|
"dist/assets",
|
|
"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"
|
|
},
|
|
"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"
|
|
}
|
|
}
|