-
-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
53 lines (53 loc) · 1.64 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
{
"name": "facerecognition",
"version": "0.6.0",
"author": "Matias De lellis <[email protected]>",
"license": "AGPL-3.0-or-later",
"description": "FaceRecognition is a Nextcloud application with a goal of recognizing, analyzing and aggregating face data in users images, and providing additional functionalities on top of these information, all with built-in privacy of Nextcloud",
"main": "index.js",
"directories": {
"doc": "doc",
"lib": "lib",
"test": "tests"
},
"dependencies": {
"@nextcloud/axios": "^2.3.0",
"@nextcloud/dialogs": "^3.2.0",
"@nextcloud/router": "^2.0.1",
"@nextcloud/vue": "^7.4.0",
"handlebars": "^4.7.7",
"lozad": "^1.16.0",
"vue": "^2.7.14"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^16.0.0",
"npm": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.3.0",
"@nextcloud/eslint-config": "^8.2.1",
"@nextcloud/stylelint-config": "^2.3.0",
"@nextcloud/webpack-vue-config": "^5.4.0"
},
"scripts": {
"build": "webpack --node-env production --progress",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"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": "git+https://github.com/matiasdelellis/facerecognition.git"
},
"bugs": {
"url": "https://github.com/matiasdelellis/facerecognition/issues"
},
"homepage": "https://github.com/matiasdelellis/facerecognition"
}