-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.71 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.71 KB
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
{
"name": "workflow_ocr",
"version": "1.0.0",
"bugs": {
"url": "https://github.com/R0Wi/workflow_ocr/issues"
},
"repository": {
"url": "https://github.com/R0Wi/workflow_ocr",
"type": "git"
},
"homepage": "https://github.com/R0Wi/workflow_ocr",
"license": "agpl",
"private": true,
"scripts": {
"dev-install": "NODE_ENV=development npm install",
"build": "rsbuild build",
"dev": "NODE_ENV=development rsbuild build",
"watch": "rsbuild dev",
"test:unit": "vitest run --coverage",
"test:integration": "vitest run src/test/integration-test",
"test:debug": "vitest --watch",
"lint": "eslint \"src/**/*.{js,vue}\" && stylelint \"src/**/*.{css,scss,vue}\"",
"lint:fix": "eslint \"src/**/*.{js,vue}\" --fix && stylelint \"src/**/*.{css,scss,vue}\" --fix"
},
"dependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/dialogs": "^7.1.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.3.0",
"vue": "^3.5.25",
"vue-material-design-icons": "^5.3.1"
},
"browserslist": [
"last 2 major versions"
],
"engines": {
"node": "^24.0.0",
"npm": "^11.6.0"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.6",
"@nextcloud/stylelint-config": "^3.1.1",
"@rsbuild/core": "^1.6.15",
"@rsbuild/plugin-node-polyfill": "^1.4.2",
"@rsbuild/plugin-sass": "^1.4.0",
"@rsbuild/plugin-vue": "^1.2.2",
"@vitejs/plugin-vue": "^6.0.3",
"@vitest/coverage-v8": "^4.0.15",
"@vue/test-utils": "^2.4.6",
"browserslist": "^4.28.1",
"eslint": "^9.39.1",
"jsdom": "^25.0.1",
"regenerator-runtime": "^0.14.1",
"sass": "^1.94.2",
"vite": "^7.2.7",
"vitest": "^4.0.15"
}
}