intellicrop
Version:
Simple JavaScript solution to edge detection assisted image cropping.
64 lines (63 loc) • 1.81 kB
JSON
{
"name": "intellicrop",
"version": "1.0.1",
"description": "Simple JavaScript solution to edge detection assisted image cropping.",
"keywords": [
"typescript",
"cropping",
"edge-detection"
],
"author": "davidjan3",
"license": "MIT",
"module": "dist/intellicrop.js",
"types": "dist/intellicrop.d.ts",
"scripts": {
"dev": "npm run clean && parcel src/index.html",
"build": "npm run clean && parcel build src/cropper/cropper.ts",
"lint": "eslint src/**/*.{ts,tsx}",
"prettier": "prettier --check ./src/**/*.{ts,tsx,css,scss,json,html}",
"prettier-run": "prettier --write ./src/**/*.{ts,tsx,css,scss,json,html}",
"test": "jest --coverage",
"clean": "rm -rf .parcel-cache && rm -rf dist",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@parcel/packager-ts": "^2.9.1",
"@parcel/reporter-bundle-analyzer": "^2.9.1",
"@parcel/transformer-typescript-types": "^2.9.1",
"@trivago/prettier-plugin-sort-imports": "^4.1.1",
"@types/jest": "^29.5.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"buffer": "^6.0.3",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.6.1",
"parcel": "^2.9.1",
"prettier": "^2.8.8",
"process": "^0.11.10",
"ts-jest": "^29.1.0",
"typescript": "^5.1.3"
},
"files": [
"dist/**/*"
],
"dependencies": {
"@techstark/opencv-js": "^4.8.0-release.10"
},
"repository": {
"type": "git",
"url": "https://github.com/davidjan3/intellicrop"
},
"targets": {
"module": {
"optimize": true
}
},
"alias": {
"crypto": false,
"fs": false,
"path": false,
"stream": false
}
}