52 lines
1.4 KiB
JSON
52 lines
1.4 KiB
JSON
{
|
|
"name": "graphfx",
|
|
"version": "0.18.1",
|
|
"description": "Graph image processing pipeline",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "webpack-dev-server --quiet --progress --watch --mode development",
|
|
"build": "webpack --mode production --quiet --progress",
|
|
"ts-check": "tsc --noEmit --project tsconfig.json",
|
|
"test": "jest"
|
|
},
|
|
"keywords": [
|
|
"image processing",
|
|
"image",
|
|
"filters"
|
|
],
|
|
"author": "standa.fifik@gmail.com",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.7.5",
|
|
"@babel/preset-env": "^7.7.5",
|
|
"@babel/preset-typescript": "^7.7.4",
|
|
"@types/jest": "^24.0.0",
|
|
"@types/lodash": "^4.14.191",
|
|
"@types/offscreencanvas": "^2019.7.0",
|
|
"babel-jest": "^24.6.0",
|
|
"babel-polyfill": "^6.26.0",
|
|
"jest": "^29.2.2",
|
|
"typescript": "^3.7.3"
|
|
},
|
|
"dependencies": {
|
|
"@mediapipe/face_detection": "^0.4.1646425229",
|
|
"@mediapipe/selfie_segmentation": "^0.1.1675465747",
|
|
"@tensorflow-models/body-segmentation": "^1.0.1",
|
|
"@tensorflow-models/face-detection": "^1.0.1",
|
|
"@tensorflow/tfjs-backend-webgl": "^4.2.0",
|
|
"@tensorflow/tfjs-converter": "^4.2.0",
|
|
"@tensorflow/tfjs-core": "^4.2.0",
|
|
"@types/css-font-loading-module": "0.0.2",
|
|
"@types/uuid": "^3.4.6",
|
|
"@zxing/browser": "^0.1.4",
|
|
"@zxing/library": "^0.20.0",
|
|
"lodash": "^4.17.21",
|
|
"uuid": "^3.3.3"
|
|
},
|
|
"jest": {
|
|
"setupFiles": [
|
|
"<rootDir>/.jest.setup.js"
|
|
]
|
|
}
|
|
}
|