2018-04-24 16:01:58 +03:00
|
|
|
{
|
2023-06-21 13:20:17 +03:00
|
|
|
"name": "@nextcloud/vue",
|
2023-09-02 15:14:29 +03:00
|
|
|
"version": "9.0.0-alpha.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"description": "Nextcloud vue components",
|
|
|
|
"keywords": [
|
|
|
|
"vuejs",
|
|
|
|
"nextcloud",
|
|
|
|
"components"
|
|
|
|
],
|
2023-07-28 19:29:53 +03:00
|
|
|
"repository": "https://github.com/nextcloud-libraries/nextcloud-vue",
|
|
|
|
"homepage": "https://github.com/nextcloud-libraries/nextcloud-vue",
|
|
|
|
"bugs": "https://github.com/nextcloud-libraries/nextcloud-vue/issues",
|
2023-06-21 13:20:17 +03:00
|
|
|
"author": "John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>",
|
|
|
|
"license": "AGPL-3.0",
|
2023-12-13 19:38:20 +03:00
|
|
|
"type": "module",
|
2023-06-21 13:20:17 +03:00
|
|
|
"scripts": {
|
2023-08-02 01:39:56 +03:00
|
|
|
"build": "vite build --mode production ",
|
|
|
|
"dev": "vite build --mode development",
|
|
|
|
"dev:watch": "vite build --mode development --watch",
|
2023-09-18 11:53:54 +03:00
|
|
|
"watch": "npm run dev:watch",
|
2023-11-21 16:46:48 +03:00
|
|
|
"l10n:extract": "node build/extract-l10n.mjs",
|
2023-06-21 13:20:17 +03:00
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2023-10-03 14:20:24 +03:00
|
|
|
"test": "TZ=UTC vitest run",
|
|
|
|
"test:coverage": "TZ=UTC vitest run --coverage",
|
2023-06-21 13:20:17 +03:00
|
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
|
|
|
|
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
|
2023-12-13 19:38:20 +03:00
|
|
|
"styleguide": "vue-styleguidist --config styleguide.config.cjs server",
|
|
|
|
"styleguide:build": "vue-styleguidist --config styleguide.config.cjs build",
|
2023-06-15 15:14:48 +03:00
|
|
|
"cypress": "TZ=UTC cypress run --component",
|
|
|
|
"cypress:gui": "TZ=UTC cypress open --component",
|
2023-10-15 19:42:29 +03:00
|
|
|
"cypress:update-snapshots": "TZ=UTC cypress run --component --spec \"cypress/visual/**/*.cy.{t,j}s\" --env type=base --config screenshotsFolder=cypress/snapshots/base"
|
2023-06-21 13:20:17 +03:00
|
|
|
},
|
2023-07-12 17:04:55 +03:00
|
|
|
"main": "dist/index.cjs",
|
2023-06-21 07:08:48 +03:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2023-09-14 16:04:09 +03:00
|
|
|
"types": "./dist/index.d.ts",
|
2023-06-21 07:08:48 +03:00
|
|
|
"import": "./dist/index.mjs",
|
2023-07-12 17:04:55 +03:00
|
|
|
"require": "./dist/index.cjs"
|
2023-06-21 07:08:48 +03:00
|
|
|
},
|
2023-08-02 01:39:56 +03:00
|
|
|
"./dist/Components/*.js": {
|
|
|
|
"import": "./dist/Components/*.mjs",
|
|
|
|
"require": "./dist/Components/*.cjs"
|
|
|
|
},
|
|
|
|
"./dist/Directives/*.js": {
|
|
|
|
"import": "./dist/Directives/*.mjs",
|
|
|
|
"require": "./dist/Directives/*.cjs"
|
|
|
|
},
|
|
|
|
"./dist/Functions/*.js": {
|
|
|
|
"import": "./dist/Functions/*.mjs",
|
|
|
|
"require": "./dist/Functions/*.cjs"
|
|
|
|
},
|
|
|
|
"./dist/Mixins/*.js": {
|
|
|
|
"import": "./dist/Mixins/*.mjs",
|
|
|
|
"require": "./dist/Mixins/*.cjs"
|
2023-12-12 02:23:54 +03:00
|
|
|
},
|
|
|
|
"./dist/Composables/*.js": {
|
|
|
|
"import": "./dist/Composables/*.mjs",
|
|
|
|
"require": "./dist/Composables/*.cjs"
|
2023-08-02 01:39:56 +03:00
|
|
|
}
|
2023-06-21 07:08:48 +03:00
|
|
|
},
|
2023-06-21 13:20:17 +03:00
|
|
|
"files": [
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
2023-09-24 23:17:24 +03:00
|
|
|
"@ckpack/vue-color": "^1.5.0",
|
2024-01-10 00:08:44 +03:00
|
|
|
"@floating-ui/dom": "^1.5.4",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@nextcloud/auth": "^2.0.0",
|
|
|
|
"@nextcloud/axios": "^2.0.0",
|
2023-10-19 09:49:46 +03:00
|
|
|
"@nextcloud/browser-storage": "^0.3.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@nextcloud/calendar-js": "^6.0.0",
|
|
|
|
"@nextcloud/capabilities": "^1.0.4",
|
|
|
|
"@nextcloud/event-bus": "^3.0.0",
|
|
|
|
"@nextcloud/initial-state": "^2.0.0",
|
|
|
|
"@nextcloud/l10n": "^2.0.1",
|
|
|
|
"@nextcloud/logger": "^2.2.1",
|
|
|
|
"@nextcloud/router": "^2.0.0",
|
|
|
|
"@vueuse/components": "^10.0.2",
|
|
|
|
"@vueuse/core": "^10.1.2",
|
|
|
|
"clone": "^2.1.2",
|
2023-11-16 10:09:23 +03:00
|
|
|
"debounce": "2.0.0",
|
2024-01-10 00:36:06 +03:00
|
|
|
"dompurify": "^3.0.8",
|
2023-06-21 13:20:17 +03:00
|
|
|
"emoji-mart-vue-fast": "^15.0.0",
|
|
|
|
"escape-html": "^1.0.3",
|
2024-01-10 00:09:51 +03:00
|
|
|
"floating-vue": "^5.0.2",
|
2023-06-25 13:45:26 +03:00
|
|
|
"focus-trap": "^7.4.3",
|
2023-06-21 13:20:17 +03:00
|
|
|
"linkify-string": "^4.0.0",
|
|
|
|
"md5": "^2.3.0",
|
2023-09-06 13:53:46 +03:00
|
|
|
"rehype-external-links": "^3.0.0",
|
2023-10-29 10:43:44 +03:00
|
|
|
"rehype-react": "^8.0.0",
|
2023-09-25 10:06:12 +03:00
|
|
|
"remark-breaks": "^4.0.0",
|
2023-09-19 09:26:42 +03:00
|
|
|
"remark-parse": "^11.0.0",
|
2023-09-20 09:35:01 +03:00
|
|
|
"remark-rehype": "^11.0.0",
|
2023-09-02 15:14:29 +03:00
|
|
|
"splitpanes": "^3.1.5",
|
2023-06-21 13:20:17 +03:00
|
|
|
"string-length": "^5.0.1",
|
|
|
|
"striptags": "^3.2.0",
|
|
|
|
"tributejs": "^5.1.3",
|
2023-10-29 10:43:44 +03:00
|
|
|
"unified": "^11.0.4",
|
2023-07-12 08:46:52 +03:00
|
|
|
"unist-builder": "^4.0.0",
|
2023-07-13 15:50:16 +03:00
|
|
|
"unist-util-visit": "^5.0.0",
|
2023-10-09 22:16:02 +03:00
|
|
|
"vue-datepicker-next": "^1.0.3",
|
2023-09-28 11:06:09 +03:00
|
|
|
"vue-select": "^4.0.0-beta.6"
|
2023-09-02 15:14:29 +03:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2023-10-29 10:43:44 +03:00
|
|
|
"vue": "^3.3.7"
|
2023-06-21 13:20:17 +03:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": "^20.0.0",
|
|
|
|
"npm": "^9.0.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-06-21 07:08:48 +03:00
|
|
|
"@babel/plugin-syntax-import-assertions": "^7.22.5",
|
2023-09-14 16:04:09 +03:00
|
|
|
"@babel/plugin-transform-typescript": "^7.23.6",
|
|
|
|
"@babel/preset-typescript": "^7.22.15",
|
2023-09-02 15:14:29 +03:00
|
|
|
"@cypress/vue": "^6.0.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@fontsource/roboto": "^5.0.0",
|
2023-10-13 13:49:14 +03:00
|
|
|
"@mdi/js": "^7.3.67",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@mdi/svg": "^7.0.96",
|
|
|
|
"@nextcloud/babel-config": "^1.0.0",
|
2023-08-17 09:35:12 +03:00
|
|
|
"@nextcloud/browserslist-config": "^3.0.0",
|
2023-09-14 16:04:09 +03:00
|
|
|
"@nextcloud/eslint-config": "github:nextcloud-libraries/eslint-config#9b4f321f25612cde492211e91e369685d9cf7b42",
|
2023-07-11 18:59:37 +03:00
|
|
|
"@nextcloud/stylelint-config": "^2.3.1",
|
2023-12-28 11:12:07 +03:00
|
|
|
"@nextcloud/vite-config": "github:nextcloud-libraries/nextcloud-vite-config#vue3",
|
2023-09-02 15:14:29 +03:00
|
|
|
"@nextcloud/webpack-vue-config": "github:nextcloud/webpack-vue-config#1f4277c6ab14be63810f425ef6b762d8ca59697b",
|
2023-11-21 16:46:48 +03:00
|
|
|
"@types/gettext-parser": "^4.0.4",
|
2023-09-02 15:14:29 +03:00
|
|
|
"@vue/test-utils": "^2.4.1",
|
2023-06-22 15:57:39 +03:00
|
|
|
"@vue/tsconfig": "^0.4.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
2023-10-29 10:43:44 +03:00
|
|
|
"cypress": "^13.3.3",
|
2023-06-21 13:20:17 +03:00
|
|
|
"cypress-visual-regression": "^3.0.0",
|
|
|
|
"eslint-plugin-cypress": "^2.11.1",
|
|
|
|
"file-loader": "^6.2.0",
|
2023-06-26 16:42:28 +03:00
|
|
|
"gettext-extractor": "^3.7.2",
|
2023-06-21 13:20:17 +03:00
|
|
|
"gettext-parser": "^7.0.0",
|
|
|
|
"glob": "^10.0.0",
|
2023-10-09 15:18:11 +03:00
|
|
|
"jsdom": "^22.1.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"resolve-url-loader": "^5.0.0",
|
|
|
|
"sanitize-filename": "^1.6.3",
|
2023-12-13 19:38:20 +03:00
|
|
|
"ts-node": "^10.9.2",
|
2023-06-22 15:57:39 +03:00
|
|
|
"typescript": "^5.0.4",
|
2023-06-21 13:20:17 +03:00
|
|
|
"url-loader": "^4.1.1",
|
2024-01-01 10:12:41 +03:00
|
|
|
"vite": "^5.0.10",
|
2023-10-03 14:20:24 +03:00
|
|
|
"vitest": "^0.34.6",
|
2024-01-10 00:32:00 +03:00
|
|
|
"vue-eslint-parser": "^9.4.0",
|
2023-11-08 14:21:07 +03:00
|
|
|
"vue-material-design-icons": "^5.2.0",
|
2023-10-29 10:43:44 +03:00
|
|
|
"vue-router": "^4.2.5",
|
2023-06-21 13:20:17 +03:00
|
|
|
"vue-styleguidist": "~4.72.0",
|
2023-06-21 07:08:48 +03:00
|
|
|
"webpack": "^5.88.1",
|
2023-08-02 01:39:56 +03:00
|
|
|
"webpack-merge": "^5.9.0"
|
2023-06-21 13:20:17 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"extends @nextcloud/browserslist-config"
|
|
|
|
]
|
2018-04-24 16:01:58 +03:00
|
|
|
}
|