2018-04-24 16:01:58 +03:00
|
|
|
{
|
2023-06-21 13:20:17 +03:00
|
|
|
"name": "@nextcloud/vue",
|
2024-05-17 21:53:38 +03:00
|
|
|
"version": "9.0.0-alpha.3",
|
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>",
|
2024-05-28 17:21:05 +03:00
|
|
|
"license": "AGPL-3.0-or-later",
|
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-09-17 15:24:51 +03:00
|
|
|
"lint": "eslint src",
|
|
|
|
"lint:fix": "eslint 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-06-21 07:08:48 +03:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2023-09-14 16:04:09 +03:00
|
|
|
"types": "./dist/index.d.ts",
|
2024-05-17 21:29:59 +03:00
|
|
|
"import": "./dist/index.mjs"
|
2023-06-21 07:08:48 +03:00
|
|
|
},
|
2023-08-02 01:39:56 +03:00
|
|
|
"./dist/Components/*.js": {
|
2024-05-11 16:11:03 +03:00
|
|
|
"types": "./dist/components/*/index.d.ts",
|
2024-05-17 21:29:59 +03:00
|
|
|
"import": "./dist/Components/*.mjs"
|
2023-08-02 01:39:56 +03:00
|
|
|
},
|
|
|
|
"./dist/Directives/*.js": {
|
2024-05-11 16:11:03 +03:00
|
|
|
"types": "./dist/directives/*/index.d.ts",
|
2024-05-17 21:29:59 +03:00
|
|
|
"import": "./dist/Directives/*.mjs"
|
2023-08-02 01:39:56 +03:00
|
|
|
},
|
|
|
|
"./dist/Functions/*.js": {
|
2024-05-11 16:11:03 +03:00
|
|
|
"types": "./dist/functions/*/index.d.ts",
|
2024-05-17 21:29:59 +03:00
|
|
|
"import": "./dist/Functions/*.mjs"
|
2023-08-02 01:39:56 +03:00
|
|
|
},
|
|
|
|
"./dist/Mixins/*.js": {
|
2024-05-11 16:11:03 +03:00
|
|
|
"types": "./dist/mixins/*/index.d.ts",
|
2024-05-17 21:29:59 +03:00
|
|
|
"import": "./dist/Mixins/*.mjs"
|
2023-12-12 02:23:54 +03:00
|
|
|
},
|
|
|
|
"./dist/Composables/*.js": {
|
2024-05-11 16:11:03 +03:00
|
|
|
"types": "./dist/composables/*/index.d.ts",
|
2024-05-17 21:29:59 +03:00
|
|
|
"import": "./dist/Composables/*.mjs"
|
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-02-20 13:28:02 +03:00
|
|
|
"@floating-ui/dom": "^1.6.5",
|
|
|
|
"@nextcloud/auth": "^2.3.0",
|
|
|
|
"@nextcloud/axios": "^2.5.0",
|
|
|
|
"@nextcloud/browser-storage": "^0.4.0",
|
2024-04-10 01:50:08 +03:00
|
|
|
"@nextcloud/capabilities": "^1.2.0",
|
2024-02-20 13:28:02 +03:00
|
|
|
"@nextcloud/event-bus": "^3.2.0",
|
|
|
|
"@nextcloud/initial-state": "^2.2.0",
|
|
|
|
"@nextcloud/l10n": "^3.1.0",
|
|
|
|
"@nextcloud/logger": "^3.0.1",
|
|
|
|
"@nextcloud/router": "^3.0.1",
|
2024-06-03 13:01:01 +03:00
|
|
|
"@nextcloud/timezones": "^0.1.1",
|
2024-04-10 01:50:08 +03:00
|
|
|
"@vueuse/components": "^10.9.0",
|
|
|
|
"@vueuse/core": "^10.9.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"clone": "^2.1.2",
|
2024-04-10 01:50:08 +03:00
|
|
|
"debounce": "^2.0.0",
|
2024-02-20 13:28:02 +03:00
|
|
|
"dompurify": "^3.1.2",
|
|
|
|
"emoji-mart-vue-fast": "^15.0.2",
|
2023-06-21 13:20:17 +03:00
|
|
|
"escape-html": "^1.0.3",
|
2024-04-10 01:50:08 +03:00
|
|
|
"floating-vue": "^5.2.2",
|
|
|
|
"focus-trap": "^7.5.4",
|
|
|
|
"linkify-string": "^4.1.3",
|
2023-06-21 13:20:17 +03:00
|
|
|
"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",
|
2024-01-18 22:18:17 +03:00
|
|
|
"remark-gfm": "^4.0.0",
|
2023-09-19 09:26:42 +03:00
|
|
|
"remark-parse": "^11.0.0",
|
2024-04-10 01:50:08 +03:00
|
|
|
"remark-rehype": "^11.1.0",
|
2023-09-02 15:14:29 +03:00
|
|
|
"splitpanes": "^3.1.5",
|
2024-04-10 01:50:08 +03:00
|
|
|
"string-length": "^6.0.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"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",
|
2024-06-05 20:09:47 +03:00
|
|
|
"vue": "^3.4.27",
|
2023-10-09 22:16:02 +03:00
|
|
|
"vue-datepicker-next": "^1.0.3",
|
2024-06-05 20:10:56 +03:00
|
|
|
"vue-router": "^4.3.2",
|
2023-09-28 11:06:09 +03:00
|
|
|
"vue-select": "^4.0.0-beta.6"
|
2023-09-02 15:14:29 +03:00
|
|
|
},
|
2023-06-21 13:20:17 +03:00
|
|
|
"engines": {
|
|
|
|
"node": "^20.0.0",
|
2024-04-10 01:50:08 +03:00
|
|
|
"npm": "^10.0.0"
|
2023-06-21 13:20:17 +03:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-10 01:50:08 +03:00
|
|
|
"@babel/plugin-syntax-import-assertions": "^7.24.1",
|
2024-05-08 23:51:29 +03:00
|
|
|
"@babel/plugin-transform-typescript": "^7.24.5",
|
2024-04-10 01:50:08 +03:00
|
|
|
"@babel/preset-typescript": "^7.24.1",
|
2023-09-02 15:14:29 +03:00
|
|
|
"@cypress/vue": "^6.0.0",
|
2024-04-10 01:50:08 +03:00
|
|
|
"@fontsource/roboto": "^5.0.12",
|
|
|
|
"@mdi/js": "^7.4.47",
|
|
|
|
"@mdi/svg": "^7.4.47",
|
2024-02-20 13:28:02 +03:00
|
|
|
"@nextcloud/babel-config": "^1.1.1",
|
|
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
|
|
"@nextcloud/eslint-config": "github:nextcloud-libraries/eslint-config#vue3",
|
|
|
|
"@nextcloud/stylelint-config": "^3.0.1",
|
2023-12-28 11:12:07 +03:00
|
|
|
"@nextcloud/vite-config": "github:nextcloud-libraries/nextcloud-vite-config#vue3",
|
2024-02-20 13:28:02 +03:00
|
|
|
"@nextcloud/webpack-vue-config": "github:nextcloud/webpack-vue-config#vue3",
|
2023-11-21 16:46:48 +03:00
|
|
|
"@types/gettext-parser": "^4.0.4",
|
2024-02-20 13:28:02 +03:00
|
|
|
"@vitest/coverage-v8": "^1.6.0",
|
|
|
|
"@vue/test-utils": "^2.4.6",
|
2024-04-10 01:50:08 +03:00
|
|
|
"@vue/tsconfig": "^0.5.1",
|
2023-06-21 13:20:17 +03:00
|
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
2024-02-20 13:28:02 +03:00
|
|
|
"cypress": "^13.9.0",
|
|
|
|
"cypress-visual-regression": "5.0.0||^5.0.2",
|
2024-05-08 23:51:29 +03:00
|
|
|
"eslint-plugin-cypress": "^3.2.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"file-loader": "^6.2.0",
|
2024-04-10 01:50:08 +03:00
|
|
|
"gettext-extractor": "^3.8.0",
|
2024-02-12 10:38:15 +03:00
|
|
|
"gettext-parser": "^8.0.0",
|
2024-02-20 13:28:02 +03:00
|
|
|
"glob": "^10.3.14",
|
2024-02-20 00:54:26 +03:00
|
|
|
"jsdom": "^24.0.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"resolve-url-loader": "^5.0.0",
|
|
|
|
"sanitize-filename": "^1.6.3",
|
2024-02-20 13:28:02 +03:00
|
|
|
"stylelint": "^16.5.0",
|
2023-12-13 19:38:20 +03:00
|
|
|
"ts-node": "^10.9.2",
|
2024-05-08 23:51:29 +03:00
|
|
|
"typescript": "^5.4.5",
|
2023-06-21 13:20:17 +03:00
|
|
|
"url-loader": "^4.1.1",
|
2024-02-20 13:28:02 +03:00
|
|
|
"vite": "^5.2.11",
|
|
|
|
"vitest": "^1.6.0",
|
2024-04-10 01:50:08 +03:00
|
|
|
"vue-eslint-parser": "^9.4.2",
|
|
|
|
"vue-material-design-icons": "^5.3.0",
|
2023-09-17 15:24:51 +03:00
|
|
|
"vue-styleguidist": "^4.72.4",
|
2024-04-10 01:50:08 +03:00
|
|
|
"webpack": "^5.91.0",
|
|
|
|
"webpack-merge": "^5.10.0"
|
2023-06-21 13:20:17 +03:00
|
|
|
},
|
|
|
|
"browserslist": [
|
|
|
|
"extends @nextcloud/browserslist-config"
|
|
|
|
]
|
2018-04-24 16:01:58 +03:00
|
|
|
}
|