-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
72 lines (72 loc) · 2.15 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
67
68
69
70
71
72
{
"name": "recognize",
"version": "9.0.0-dev.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 <[email protected]>",
"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.1.4",
"@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"
]
}