-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 4.16 KB
/
Copy pathpackage.json
File metadata and controls
109 lines (109 loc) · 4.16 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "hermiq",
"version": "0.1.0",
"license": "EUPL-1.2",
"engines": {
"node": "^22.14 || ^24 || >=26",
"npm": "^11.0.0"
},
"scripts": {
"build": "NODE_ENV=production webpack --config webpack.config.js --progress",
"dev": "NODE_ENV=development webpack --config webpack.config.js --progress",
"watch": "NODE_ENV=development webpack --config webpack.config.js --progress --watch",
"lint": "eslint src",
"lint-fix": "npm run lint -- --fix",
"test:l10n": "node tests/l10n/check-l10n.js",
"stylelint": "stylelint \"src/**/*.{vue,scss,css}\"",
"format": "prettier --check \"**/*.{js,ts,vue,css,scss}\"",
"format:fix": "prettier --write \"**/*.{js,ts,vue,css,scss}\"",
"stylelint-fix": "stylelint \"src/**/*.{vue,scss,css}\" --fix",
"check:manifest": "node tests/validate-manifest.js",
"l10n:build": "node scripts/build-l10n-js.js",
"check:l10n-js": "node scripts/build-l10n-js.js --check",
"check:manifest-v2": "node tests/manifest-v2.spec.js",
"check:register": "node tests/validate-register.js",
"check:registry": "node tests/registry.spec.js",
"check:agent-context": "node tests/agent-context.spec.js",
"check:tool-taxonomy": "node tests/tool-taxonomy.spec.js",
"check:grant-flatten": "node tests/grant-flatten.spec.js",
"check:json-strict": "node tests/validate-json-strict.js",
"check:specs": "npm run check:json-strict && npm run check:manifest-v2 && npm run check:register && npm run check:registry && npm run check:agent-context && npm run check:tool-taxonomy && npm run check:grant-flatten && npm run check:flow-branches && npm run check:flow-trigger-count",
"prepare": "git config core.hooksPath .githooks || true",
"check:flow-branches": "node tests/flow-branches.spec.js",
"check:flow-trigger-count": "node tests/flow-trigger-count.spec.js",
"check:companion-bundle": "node tests/companion-bundle.spec.js",
"icons:opengemeenten": "node scripts/generate-opengemeenten-icons.mjs"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@babel/core": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"@conduction/nextcloud-vue": "^2.9.2",
"@nextcloud/auth": "^2.5.0",
"@nextcloud/axios": "~2.5.2",
"@nextcloud/dialogs": "^7.4.1",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.9.0",
"@opengemeenten/iconset-web-component": "^2.0.0",
"babel-loader": "^10.1.1",
"dexie": "^4.4.5",
"dompurify": "^3.4.11",
"gridstack": "^13.1.2",
"marked": "^18.0.10",
"node-polyfill-webpack-plugin": "4.0.0",
"pinia": "^2.1.7",
"vue": "^3.5.41",
"vue-material-design-icons": "^5.3.0",
"vue-router": "^4.6.4"
},
"overrides": {
"vue3-apexcharts": "1.8.0",
"libxmljs2": "^0.37.0",
"@nextcloud/axios": "~2.5.2",
"@nextcloud/vue": "^9.9.0",
"@nextcloud/dialogs": {
"@vueuse/core": "11.3.0"
},
"@toast-ui/editor": {
"dompurify": "^3.4.13"
}
},
"devDependencies": {
"@cyclonedx/cyclonedx-npm": "^6.0.1",
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/prettier-config": "^1.2.0",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/webpack-vue-config": "^6.0.1",
"@playwright/test": "^1.61.1",
"@typescript-eslint/parser": "^8.67.0",
"@vue/compiler-sfc": "^3.5.13",
"@vue/test-utils": "^2.4.6",
"ajv": "^8.17.1",
"ajv-formats": "^3.0.1",
"css-loader": "~7.1.1",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"postcss-html": "^2.0.0",
"prettier": "^3.9.6",
"sass": "^1.99.0",
"sass-loader": "^17.0.0",
"style-loader": "~4.0.0",
"stylelint": "^17.14.1",
"stylelint-config-html": "^2.0.0",
"stylelint-config-recommended-scss": "^17.0.1",
"stylelint-config-recommended-vue": "^2.0.0",
"terser-webpack-plugin": "^5.6.1",
"typescript": "^5.9.3",
"vue-eslint-parser": "^10.3.0",
"vue-loader": "^17.4.2",
"webpack": "^5.106.2",
"webpack-cli": "^7.2.2"
},
"prettier": "@nextcloud/prettier-config"
}