160 строки
5.3 KiB
JSON
160 строки
5.3 KiB
JSON
{
|
|
"name": "@nextcloud/vue",
|
|
"version": "9.0.0-alpha.2",
|
|
"description": "Nextcloud vue components",
|
|
"keywords": [
|
|
"vuejs",
|
|
"nextcloud",
|
|
"components"
|
|
],
|
|
"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",
|
|
"author": "John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>",
|
|
"license": "AGPL-3.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite build --mode production ",
|
|
"dev": "vite build --mode development",
|
|
"dev:watch": "vite build --mode development --watch",
|
|
"watch": "npm run dev:watch",
|
|
"l10n:extract": "node build/extract-l10n.mjs",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix",
|
|
"test": "TZ=UTC vitest run",
|
|
"test:coverage": "TZ=UTC vitest run --coverage",
|
|
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css",
|
|
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css --fix",
|
|
"styleguide": "vue-styleguidist --config styleguide.config.cjs server",
|
|
"styleguide:build": "vue-styleguidist --config styleguide.config.cjs build",
|
|
"cypress": "TZ=UTC cypress run --component",
|
|
"cypress:gui": "TZ=UTC cypress open --component",
|
|
"cypress:update-snapshots": "TZ=UTC cypress run --component --spec \"cypress/visual/**/*.cy.{t,j}s\" --env type=base --config screenshotsFolder=cypress/snapshots/base"
|
|
},
|
|
"main": "dist/index.cjs",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./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"
|
|
},
|
|
"./dist/Composables/*.js": {
|
|
"import": "./dist/Composables/*.mjs",
|
|
"require": "./dist/Composables/*.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"CHANGELOG.md",
|
|
"LICENSE",
|
|
"README.md",
|
|
"dist"
|
|
],
|
|
"dependencies": {
|
|
"@ckpack/vue-color": "^1.5.0",
|
|
"@floating-ui/dom": "^1.6.3",
|
|
"@nextcloud/auth": "^2.2.1",
|
|
"@nextcloud/axios": "^2.4.0",
|
|
"@nextcloud/browser-storage": "^0.3.0",
|
|
"@nextcloud/calendar-js": "^6.1.0",
|
|
"@nextcloud/capabilities": "^1.2.0",
|
|
"@nextcloud/event-bus": "^3.1.0",
|
|
"@nextcloud/initial-state": "^2.1.0",
|
|
"@nextcloud/l10n": "^2.2.0",
|
|
"@nextcloud/logger": "^2.7.0",
|
|
"@nextcloud/router": "^3.0.0",
|
|
"@vueuse/components": "^10.9.0",
|
|
"@vueuse/core": "^10.9.0",
|
|
"clone": "^2.1.2",
|
|
"debounce": "^2.0.0",
|
|
"dompurify": "^3.1.0",
|
|
"emoji-mart-vue-fast": "^15.0.1",
|
|
"escape-html": "^1.0.3",
|
|
"floating-vue": "^5.2.2",
|
|
"focus-trap": "^7.5.4",
|
|
"linkify-string": "^4.1.3",
|
|
"md5": "^2.3.0",
|
|
"rehype-external-links": "^3.0.0",
|
|
"rehype-react": "^8.0.0",
|
|
"remark-breaks": "^4.0.0",
|
|
"remark-gfm": "^4.0.0",
|
|
"remark-parse": "^11.0.0",
|
|
"remark-rehype": "^11.1.0",
|
|
"splitpanes": "^3.1.5",
|
|
"string-length": "^6.0.0",
|
|
"striptags": "^3.2.0",
|
|
"tributejs": "^5.1.3",
|
|
"unified": "^11.0.4",
|
|
"unist-builder": "^4.0.0",
|
|
"unist-util-visit": "^5.0.0",
|
|
"vue-datepicker-next": "^1.0.3",
|
|
"vue-select": "^4.0.0-beta.6"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.4.21"
|
|
},
|
|
"engines": {
|
|
"node": "^20.0.0",
|
|
"npm": "^10.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-syntax-import-assertions": "^7.24.1",
|
|
"@babel/plugin-transform-typescript": "^7.24.4",
|
|
"@babel/preset-typescript": "^7.24.1",
|
|
"@cypress/vue": "^6.0.0",
|
|
"@fontsource/roboto": "^5.0.12",
|
|
"@mdi/js": "^7.4.47",
|
|
"@mdi/svg": "^7.4.47",
|
|
"@nextcloud/babel-config": "^1.0.0",
|
|
"@nextcloud/browserslist-config": "^3.0.0",
|
|
"@nextcloud/eslint-config": "github:nextcloud-libraries/eslint-config#9b4f321f25612cde492211e91e369685d9cf7b42",
|
|
"@nextcloud/stylelint-config": "^2.4.0",
|
|
"@nextcloud/vite-config": "github:nextcloud-libraries/nextcloud-vite-config#vue3",
|
|
"@nextcloud/webpack-vue-config": "github:nextcloud/webpack-vue-config#1f4277c6ab14be63810f425ef6b762d8ca59697b",
|
|
"@types/gettext-parser": "^4.0.4",
|
|
"@vitest/coverage-v8": "^1.4.0",
|
|
"@vue/test-utils": "^2.4.5",
|
|
"@vue/tsconfig": "^0.5.1",
|
|
"babel-loader-exclude-node-modules-except": "^1.2.1",
|
|
"cypress": "^13.7.2",
|
|
"cypress-visual-regression": "^5.0.0",
|
|
"eslint-plugin-cypress": "^2.15.1",
|
|
"file-loader": "^6.2.0",
|
|
"gettext-extractor": "^3.8.0",
|
|
"gettext-parser": "^8.0.0",
|
|
"glob": "^10.3.12",
|
|
"jsdom": "^24.0.0",
|
|
"resolve-url-loader": "^5.0.0",
|
|
"sanitize-filename": "^1.6.3",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.4.4",
|
|
"url-loader": "^4.1.1",
|
|
"vite": "^5.2.8",
|
|
"vitest": "^1.4.0",
|
|
"vue-eslint-parser": "^9.4.2",
|
|
"vue-material-design-icons": "^5.3.0",
|
|
"vue-router": "^4.3.0",
|
|
"vue-styleguidist": "^4.72.4",
|
|
"webpack": "^5.91.0",
|
|
"webpack-merge": "^5.10.0"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
]
|
|
}
|