112 строки
3.3 KiB
JSON
112 строки
3.3 KiB
JSON
{
|
|
"name": "@nextcloud/dialogs",
|
|
"version": "6.0.1",
|
|
"description": "Nextcloud dialog helpers",
|
|
"types": "dist/index.d.ts",
|
|
"main": "dist/index.cjs",
|
|
"module": "dist/index.mjs",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./filepicker.js": {
|
|
"types": "./dist/filepicker.d.ts",
|
|
"import": "./dist/filepicker.mjs",
|
|
"require": "./dist/filepicker.cjs"
|
|
},
|
|
"./style.css": {
|
|
"import": "./dist/style.css",
|
|
"require": "./dist/style.css"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"prepare": "npm run build",
|
|
"build:doc": "npm run dev && npm run doc",
|
|
"build": "vite --mode production build",
|
|
"dev": "vite --mode development build",
|
|
"dev:watch": "vite --mode development build --watch",
|
|
"doc": "typedoc --tsconfig tsconfig-typedoc.json --highlightLanguages vue --plugin @zamiell/typedoc-plugin-not-exported --out dist/doc dist/index.d.ts dist/filepicker.d.ts && touch dist/doc/.nojekyll",
|
|
"lint": "eslint lib/",
|
|
"lint:fix": "eslint --fix lib/",
|
|
"stylelint": "stylelint lib/**/*.vue",
|
|
"stylelint:fix": "stylelint lib/**/*.vue --fix",
|
|
"test": "vitest run",
|
|
"test:coverage": "vitest run --coverage",
|
|
"l10n:extract": "node build/extract-l10n.js"
|
|
},
|
|
"keywords": [
|
|
"nextcloud"
|
|
],
|
|
"homepage": "https://github.com/nextcloud-libraries/nextcloud-dialogs#readme",
|
|
"license": "AGPL-3.0-or-later",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/nextcloud-libraries/nextcloud-dialogs"
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"peerDependencies": {
|
|
"@nextcloud/vue": "^8.16.0",
|
|
"vue": "^2.7.16"
|
|
},
|
|
"dependencies": {
|
|
"@mdi/js": "^7.4.47",
|
|
"@nextcloud/auth": "^2.4.0",
|
|
"@nextcloud/axios": "^2.5.1",
|
|
"@nextcloud/event-bus": "^3.3.1",
|
|
"@nextcloud/files": "^3.9.0",
|
|
"@nextcloud/initial-state": "^2.2.0",
|
|
"@nextcloud/l10n": "^3.1.0",
|
|
"@nextcloud/router": "^3.0.1",
|
|
"@nextcloud/sharing": "^0.2.3",
|
|
"@nextcloud/typings": "^1.9.1",
|
|
"@types/toastify-js": "^1.12.3",
|
|
"@vueuse/core": "^11.2.0",
|
|
"cancelable-promise": "^4.3.1",
|
|
"p-queue": "^8.0.1",
|
|
"toastify-js": "^1.12.0",
|
|
"vue-frag": "^1.4.3",
|
|
"webdav": "^5.7.1"
|
|
},
|
|
"devDependencies": {
|
|
"@mdi/svg": "^7.4.47",
|
|
"@nextcloud/browserslist-config": "^3.0.1",
|
|
"@nextcloud/eslint-config": "^8.4.1",
|
|
"@nextcloud/stylelint-config": "^2.4.0",
|
|
"@nextcloud/vite-config": "^1.4.2",
|
|
"@types/gettext-parser": "^4.0.4",
|
|
"@vitest/coverage-v8": "^2.1.4",
|
|
"@vue/test-utils": "^1.3.6",
|
|
"@vue/tsconfig": "^0.5.1",
|
|
"@zamiell/typedoc-plugin-not-exported": "^0.3.0",
|
|
"core-js": "^3.39.0",
|
|
"gettext-extractor": "^3.8.0",
|
|
"gettext-parser": "^8.0.0",
|
|
"happy-dom": "^14.12.3",
|
|
"sass": "^1.80.6",
|
|
"stylelint": "^15.11.0",
|
|
"tslib": "^2.7.0",
|
|
"typedoc": "^0.26.11",
|
|
"typescript": "^5.6.3",
|
|
"typescript-plugin-css-modules": "^5.1.0",
|
|
"vite": "^5.4.3",
|
|
"vitest": "^2.0.2",
|
|
"vue-material-design-icons": "^5.3.1",
|
|
"vue-template-compiler": "^2.7.16"
|
|
},
|
|
"engines": {
|
|
"node": "^20.0.0",
|
|
"npm": "^10.0.0"
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"stylelint": {
|
|
"extends": "@nextcloud/stylelint-config"
|
|
}
|
|
}
|