-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
69 lines (69 loc) · 2.07 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
{
"name": "ocr",
"version": "6.0.0",
"private": true,
"description": "Nextcloud OCR (optical character recoginition) processing for images with tesseract-js",
"author": "Janis Koehr <[email protected]>",
"scripts": {
"build": "vue-cli-service build",
"test": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"postbuild": "rimraf js && rimraf css && ncp dist/js js && ncp dist/css css"
},
"dependencies": {
"@nextcloud/auth": "^1.2.1",
"@nextcloud/axios": "^1.3.1",
"@nextcloud/l10n": "^1.0.1",
"@nextcloud/router": "^1.0.0",
"@nextcloud/vue": "^1.3.1",
"core-js": "^3.4.4",
"tesseract.js": "^2.0.2",
"tesseract.js-core": "^2.0.0",
"vue": "^2.6.10",
"vue-multiselect": "^2.1.6",
"vuex": "^3.1.2"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^1.0.0",
"@types/jest": "^24.0.19",
"@types/jquery": "^3.3.32",
"@types/lodash": "^4.14.149",
"@types/node": "^13.7.4",
"@typescript-eslint/eslint-plugin": "^2.20.0",
"@typescript-eslint/parser": "^2.20.0",
"@vue/cli-plugin-babel": "^4.2.2",
"@vue/cli-plugin-eslint": "^4.2.2",
"@vue/cli-plugin-typescript": "^4.2.2",
"@vue/cli-plugin-unit-jest": "^4.2.2",
"@vue/cli-service": "^4.2.2",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/eslint-config-typescript": "^5.0.1",
"@vue/test-utils": "^1.0.0-beta.31",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-vue": "^6.2.1",
"lodash": "^4.17.15",
"ncp": "^2.0.0",
"rimraf": "^3.0.2",
"typescript": "^3.7.5",
"vue-template-compiler": "^2.6.10"
},
"bugs": {
"url": "https://github.com/janis91/ocr/issues"
},
"homepage": "https://github.com/janis91/ocr#readme",
"keywords": [
"ocr"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/janis91/ocr.git"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}