-
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.88 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.88 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": "nextcloud-exelearning",
"version": "0.0.0-alpha",
"description": "Preview and edit eXeLearning .elpx packages in Nextcloud Files",
"private": true,
"license": "AGPL-3.0-or-later",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --config webpack.config.js",
"dev": "cross-env NODE_ENV=development webpack --progress --config webpack.config.js",
"watch": "cross-env NODE_ENV=development webpack --progress --watch --config webpack.config.js",
"lint": "eslint --ext .js,.ts,.vue --max-warnings 0 src",
"lint:biome": "biome lint .",
"lint:biome:fix": "biome lint --write .",
"typecheck": "vue-tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/files": "^4.0.0",
"@nextcloud/initial-state": "^2.2.0",
"@nextcloud/l10n": "^3.4.0",
"@nextcloud/router": "^3.0.1",
"fflate": "^0.8.3",
"vue": "^3.5.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@biomejs/biome": "2.4.15",
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/webpack-vue-config": "^7.0.2",
"@types/node": "^25.9.0",
"@vue/compiler-sfc": "^3.5.0",
"@vue/test-utils": "^2.4.6",
"babel-loader": "^10.0.0",
"cross-env": "^7.0.3",
"css-loader": "^7.1.1",
"eslint": "^8.57.0",
"happy-dom": "^20.9.0",
"sass": "^1.77.0",
"sass-loader": "^16.0.2",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.0",
"typescript": "^5.4.5",
"vitest": "^4.1.6",
"vue-loader": "^17.4.0",
"vue-tsc": "^3.3.0",
"webpack": "^5.88.2",
"webpack-cli": "^6.0.1"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0",
"npm": "^10.0.0 || ^11.0.0"
}
}