-
Notifications
You must be signed in to change notification settings - Fork 54
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "files_mindmap",
"version": "0.0.34",
"description": "A Mind map editor",
"author": "Jingtao Yan",
"license": "AGPL-3.0-or-later",
"type": "module",
"bugs": {
"url": "https://github.com/nextcloud/files_mindmap/issues"
},
"homepage": "https://github.com/nextcloud/files_mindmap#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/files_mindmap.git"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint --ext .js,.vue,.ts src",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@mdi/svg": "^7.3.67",
"@nextcloud/auth": "^2.5.0",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/dialogs": "^5.0.0",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^4.0.0",
"@nextcloud/files-legacy": "npm:@nextcloud/files@^3.12.2",
"@nextcloud/l10n": "^3.0.0",
"@nextcloud/logger": "^3.0.0",
"@nextcloud/paths": "^3.0.0",
"@nextcloud/router": "^3.1.0",
"@nextcloud/sharing": "^0.3.0",
"jszip": "^3.10.1"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/eslint-config": "^v8.3.0",
"@nextcloud/vite-config": "^1.5.6",
"@vue/test-utils": "^1.3.6",
"jsdom": "^25.0.0",
"vite-plugin-static-copy": "^3.1.2",
"vitest": "^4.1.3"
}
}