forked from nextcloud/recognize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.9 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "recognize",
"version": "1.11.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"
},
"repository": {
"type": "git",
"url": "github.com/marcelklehr/recognize"
},
"author": "Marcel Klehr <[email protected]>",
"license": "MIT",
"dependencies": {
"@nextcloud/axios": "^1.9.0",
"@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^4.0.2",
"@tedconf/fessonia": "^2.2.1",
"@tensorflow/tfjs": "^3.14",
"@tensorflow/tfjs-backend-wasm": "^3.14.0",
"@tensorflow/tfjs-node": "^3.14",
"@vladmandic/face-api": "^1.6.5",
"download": "^8.0.0",
"ffmpeg-static": "^4.4.0",
"get-port": "^5.1.1",
"get-stdin": "^9.0.0",
"jimp": "^0.16.1",
"lodash": "^4.17.21",
"static-server": "^2.2.1",
"tar": "^6.1.11",
"vue": "^2.6.12",
"wav-decoder": "^1.3.0",
"yaml": "^1.10.2"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^6.0.0",
"@nextcloud/stylelint-config": "^1.0.0-beta.0",
"@nextcloud/webpack-vue-config": "^4.1.0",
"@vue/test-utils": "^1.1.3",
"async-parallel": "^1.2.3",
"execa": "^5.1.1",
"fast-glob": "^3.2.7",
"flickr-sdk": "^3.10.0",
"google-img-scrap": "^1.0.6"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}