-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.67 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.67 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@conduction/nextcloud-vue",
"version": "0.1.0-beta.10",
"description": "Shared Vue component library for Conduction Nextcloud apps — complements @nextcloud/vue with higher-level components, OpenRegister integration, and NL Design System support",
"license": "EUPL-1.2",
"author": "Conduction B.V. <info@conduction.nl>",
"main": "dist/nextcloud-vue.cjs.js",
"module": "dist/nextcloud-vue.esm.js",
"style": "dist/nextcloud-vue.css",
"types": "src/types/index.d.ts",
"files": [
"dist/",
"src/",
"css/"
],
"sideEffects": true,
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "jest",
"lint": "eslint src/",
"lint-fix": "npm run lint -- --fix",
"stylelint": "stylelint 'src/**/*.vue' 'src/**/*.css'",
"check:docs": "node scripts/check-docs.js",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-json": "^6.0.2",
"@codemirror/lang-xml": "^6.1.0",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/dialogs": "^7.3.0",
"@uiw/codemirror-theme-github": "^4.25.8",
"gridstack": "^10.3.1",
"vue-apexcharts": "^1.7.0",
"vue-codemirror6": "^1.4.3"
},
"peerDependencies": {
"@nextcloud/axios": "^2.0.0",
"@nextcloud/l10n": "^2.0.0 || ^3.0.0",
"@nextcloud/router": "^2.0.0 || ^3.0.0",
"@nextcloud/vue": "^8.0.0",
"bootstrap-vue": "^2.23.1",
"pinia": "^2.0.0",
"vue": "^2.7.0",
"vue-frag": "^1.4.3",
"vue-material-design-icons": "^5.0.0"
},
"overrides": {
"json5": "^2.2.3",
"loader-utils": "^1.4.2"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@eslint/config-helpers": "^0.4.2",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^9.39.3",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/vue": "^8.12.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@semantic-release/git": "^10.0.1",
"@vue/test-utils": "^1.3.6",
"@vue/vue2-jest": "^29.2.6",
"babel-jest": "^29.7.0",
"bootstrap-vue": "^2.23.1",
"eslint": "^8.56.0",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.21.1",
"eslint-webpack-plugin": "^4.0.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"pinia": "^2.1.7",
"rollup": "^3.29.0",
"rollup-plugin-postcss": "^4.0.0",
"rollup-plugin-vue": "^5.1.9",
"stylelint": "^14.16.1",
"stylelint-config-recommended": "^9.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"vue": "^2.7.16",
"vue-material-design-icons": "^5.2.0"
}
}