-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.72 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
{
"name": "butterfly-nextcloud",
"version": "0.1.0",
"private": true,
"description": "Edit Butterfly documents in Nextcloud",
"homepage": "https://github.com/LinwoodDev/ButterflyNextcloud#readme",
"bugs": {
"url": "https://github.com/LinwoodDev/ButterflyNextcloud/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LinwoodDev/ButterflyNextcloud.git"
},
"license": "AGPL-3.0-or-later",
"type": "module",
"scripts": {
"build": "vite build",
"check": "npm run lint && npm run stylelint && npm run typecheck && npm run build",
"dev": "vite --mode development build",
"lint": "eslint src",
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
"typecheck": "vue-tsc --noEmit",
"watch": "vite --mode development build --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"overrides": {
"webdav": {
"minimatch": "^10.2.3"
}
},
"dependencies": {
"@nextcloud/axios": "^2.6.0",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.9.0",
"vue": "^3.5.40"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/vite-config": "^2.5.4",
"@vue/tsconfig": "^0.9.1",
"eslint": "^10.8.0",
"stylelint": "^17.14.1",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^1.6.1",
"typescript": "^6.0.3",
"vite": "^7.3.6",
"vue-tsc": "^3.3.8"
},
"engines": {
"node": ">=24.11.0 <25",
"npm": "^11.3.0"
}
}