2018-04-24 16:01:58 +03:00
|
|
|
{
|
2023-06-21 13:20:17 +03:00
|
|
|
"name": "@nextcloud/vue",
|
2023-10-06 22:23:04 +03:00
|
|
|
"version": "8.0.0-beta.8",
|
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",
|
|
|
|
"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-06-21 13:20:17 +03:00
|
|
|
"l10n:extract": "node build/extract-l10n.js",
|
|
|
|
"lint": "eslint --ext .js,.vue src",
|
|
|
|
"lint:fix": "eslint --ext .js,.vue src --fix",
|
2023-06-15 15:14:48 +03:00
|
|
|
"test": "TZ=UTC jest --verbose",
|
|
|
|
"test:coverage": "TZ=UTC jest --verbose --coverage --no-cache",
|
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",
|
|
|
|
"styleguide": "vue-styleguidist server",
|
|
|
|
"styleguide:build": "vue-styleguidist build",
|
2023-06-15 15:14:48 +03:00
|
|
|
"cypress": "TZ=UTC cypress run --component",
|
|
|
|
"cypress:gui": "TZ=UTC cypress open --component",
|
2023-07-19 19:25:39 +03:00
|
|
|
"cypress:update-snapshots": "TZ=UTC cypress run --component --spec \"cypress/visual/**/*.cy.js\" --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": {
|
|
|
|
".": {
|
|
|
|
"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-06-21 07:08:48 +03:00
|
|
|
},
|
2023-06-21 13:20:17 +03:00
|
|
|
"files": [
|
|
|
|
"CHANGELOG.md",
|
|
|
|
"LICENSE",
|
|
|
|
"README.md",
|
|
|
|
"dist"
|
|
|
|
],
|
|
|
|
"dependencies": {
|
|
|
|
"@floating-ui/dom": "^1.1.0",
|
|
|
|
"@nextcloud/auth": "^2.0.0",
|
|
|
|
"@nextcloud/axios": "^2.0.0",
|
|
|
|
"@nextcloud/browser-storage": "^0.2.0",
|
|
|
|
"@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",
|
2023-06-23 20:38:13 +03:00
|
|
|
"@nextcloud/vue-select": "^3.23.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@vueuse/components": "^10.0.2",
|
|
|
|
"@vueuse/core": "^10.1.2",
|
|
|
|
"clone": "^2.1.2",
|
|
|
|
"debounce": "1.2.1",
|
2023-09-22 22:16:21 +03:00
|
|
|
"dompurify": "^3.0.5",
|
2023-06-21 13:20:17 +03:00
|
|
|
"emoji-mart-vue-fast": "^15.0.0",
|
|
|
|
"escape-html": "^1.0.3",
|
|
|
|
"floating-vue": "^1.0.0-beta.19",
|
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",
|
|
|
|
"node-polyfill-webpack-plugin": "^2.0.1",
|
2023-09-06 13:53:46 +03:00
|
|
|
"rehype-external-links": "^3.0.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"rehype-react": "^7.1.2",
|
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-06-21 13:20:17 +03:00
|
|
|
"splitpanes": "^2.4.1",
|
|
|
|
"string-length": "^5.0.1",
|
|
|
|
"striptags": "^3.2.0",
|
|
|
|
"tributejs": "^5.1.3",
|
2023-08-18 09:29:16 +03:00
|
|
|
"unified": "^11.0.1",
|
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-06-21 13:20:17 +03:00
|
|
|
"vue": "^2.7.14",
|
|
|
|
"vue-color": "^2.8.1",
|
2023-08-13 23:12:04 +03:00
|
|
|
"vue-frag": "^1.4.3",
|
2023-06-21 13:20:17 +03:00
|
|
|
"vue-material-design-icons": "^5.1.2",
|
|
|
|
"vue2-datepicker": "^3.11.0"
|
|
|
|
},
|
|
|
|
"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-06-22 15:57:39 +03:00
|
|
|
"@babel/preset-typescript": "^7.22.5",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@cypress/vue2": "^2.0.1",
|
|
|
|
"@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-06-22 15:57:39 +03:00
|
|
|
"@nextcloud/eslint-config": "^8.3.0-beta.0",
|
2023-07-11 18:59:37 +03:00
|
|
|
"@nextcloud/stylelint-config": "^2.3.1",
|
2023-10-06 22:04:54 +03:00
|
|
|
"@nextcloud/vite-config": "^1.0.1",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@nextcloud/webpack-vue-config": "github:nextcloud/webpack-vue-config#master",
|
2023-10-04 22:50:27 +03:00
|
|
|
"@types/jest": "^29.5.5",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@vue/test-utils": "^1.3.0",
|
2023-06-22 15:57:39 +03:00
|
|
|
"@vue/tsconfig": "^0.4.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"@vue/vue2-jest": "^29.0.0",
|
|
|
|
"babel-jest": "^29.0.1",
|
|
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
2023-09-01 09:33:52 +03:00
|
|
|
"cypress": "^13.1.0",
|
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",
|
|
|
|
"jest": "^29.0.1",
|
2023-09-13 10:07:37 +03:00
|
|
|
"jest-environment-jsdom": "29.7.0",
|
2023-06-21 13:20:17 +03:00
|
|
|
"jest-serializer-vue": "^3.1.0",
|
|
|
|
"jest-transform-stub": "^2.0.0",
|
|
|
|
"resolve-url-loader": "^5.0.0",
|
|
|
|
"sanitize-filename": "^1.6.3",
|
2023-06-28 10:34:59 +03:00
|
|
|
"ts-node": "^10.9.1",
|
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",
|
2023-06-21 07:08:48 +03:00
|
|
|
"vite": "^4.3.9",
|
2023-06-21 13:20:17 +03:00
|
|
|
"vue-eslint-parser": "^9.0.3",
|
|
|
|
"vue-styleguidist": "~4.72.0",
|
|
|
|
"vue-template-compiler": "^2.7.14",
|
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
|
|
|
}
|