mirror of
https://github.com/nextcloud/recognize.git
synced 2026-01-13 20:25:35 +00:00
73 lines
2.1 KiB
JSON
73 lines
2.1 KiB
JSON
{
|
|
"name": "recognize",
|
|
"version": "11.0.0",
|
|
"description": "Image recognition in nextcloud",
|
|
"main": "src/classifier_imagenet.js",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "tests"
|
|
},
|
|
"scripts": {
|
|
"build": "NODE_ENV=production webpack --progress --config webpack.js",
|
|
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
|
|
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
|
|
"lint": "eslint --ext .js,.vue src",
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
|
"stylelint": "stylelint src",
|
|
"stylelint:fix": "stylelint src --fix",
|
|
"build:translatables": "node scripts/generate-translatable-file.js > src/things.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "github.com/marcelklehr/recognize"
|
|
},
|
|
"author": "Marcel Klehr <mklehr@gmx.net>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@exifer/gps": "^1.0.0-beta.2",
|
|
"@tensorflow/tfjs": "4.x",
|
|
"@tensorflow/tfjs-backend-wasm": "4.x",
|
|
"@tensorflow/tfjs-node": "4.x",
|
|
"@tensorflow/tfjs-node-gpu": "4.x",
|
|
"@vladmandic/face-api": "^1.7.11",
|
|
"download": "^8.0.0",
|
|
"execa": "^5.1.1",
|
|
"exifer": "^1.0.0-beta.2",
|
|
"ffmpeg-static": "^4.4.0",
|
|
"geo-reverse": "^1.0.13",
|
|
"get-port": "^5.1.1",
|
|
"get-stdin": "^9.0.0",
|
|
"humanize-duration": "^3.30.0",
|
|
"jimp": "^0.22.10",
|
|
"lodash": "^4.17.21",
|
|
"static-server": "^2.2.1",
|
|
"tar": "^6.2.1",
|
|
"wav-decoder": "^1.3.0",
|
|
"yaml": "^2.5.1"
|
|
},
|
|
"devDependencies": {
|
|
"@nextcloud/axios": "^2.4.0",
|
|
"@nextcloud/babel-config": "^1.0.0",
|
|
"@nextcloud/browserslist-config": "^2.3.0",
|
|
"@nextcloud/eslint-config": "^8.4.2",
|
|
"@nextcloud/initial-state": "^2.0.0",
|
|
"@nextcloud/router": "^2.1.2",
|
|
"@nextcloud/stylelint-config": "^2.3.1",
|
|
"@nextcloud/vue": "8.x",
|
|
"@nextcloud/webpack-vue-config": "^5.5.1",
|
|
"@vue/test-utils": "^1.1.3",
|
|
"async-parallel": "^1.2.3",
|
|
"fast-glob": "^3.2.11",
|
|
"flickr-sdk": "^6.0.0",
|
|
"google-img-scrap": "^1.0.6",
|
|
"vue": "^2.7.14"
|
|
},
|
|
"engines": {
|
|
"node": "20.x",
|
|
"npm": "10.x"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
]
|
|
}
|