sobel-ts
Version:
TypeScript implementation of Sobel edge detection algorithm for image processing
62 lines (61 loc) • 1.6 kB
JSON
{
"name": "sobel-ts",
"version": "1.0.2",
"description": "TypeScript implementation of Sobel edge detection algorithm for image processing",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/catorch/sobel-ts",
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/sobel.js",
"dist/sobel.d.ts",
"dist/types.js",
"dist/types.d.ts"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"targets": {
"browser-demo": {
"source": "examples/browser/index.html",
"isLibrary": false,
"distDir": "docs",
"publicUrl": "./"
}
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc",
"prepare": "npm run build",
"start:browser": "npm run build && parcel --target browser-demo",
"build:gh-pages": "npm run build && PARCEL_WORKERS=0 parcel build --target browser-demo",
"predeploy": "npm run build:gh-pages",
"deploy": "gh-pages -d docs"
},
"keywords": [
"sobel",
"edge-detection",
"image-processing",
"computer-vision",
"typescript"
],
"author": "catorch",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-html": "^2.14.4",
"@parcel/transformer-typescript-tsc": "^2.14.4",
"@parcel/transformer-typescript-types": "^2.14.4",
"@types/node": "^22.14.1",
"gh-pages": "^6.1.1",
"parcel": "^2.14.4",
"svgo": "^3.3.2",
"typescript": "^5.8.3"
}
}