58 строки
1.5 KiB
JSON
58 строки
1.5 KiB
JSON
{
|
|
"name": "files_lock",
|
|
"version": "31.0.0",
|
|
"license": "AGPL-3.0-or-later",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"build": "vite --mode production build",
|
|
"dev": "vite --mode development build",
|
|
"watch": "vite --mode development build --watch",
|
|
"lint": "eslint --ext .js,.ts,.vue src",
|
|
"lint:fix": "eslint --ext .js,.ts,.vue src --fix",
|
|
"stylelint": "stylelint 'src/**/*.vue'",
|
|
"stylelint:fix": "stylelint src/**/*.vue --fix"
|
|
},
|
|
"dependencies": {
|
|
"@mdi/svg": "^7.3.67",
|
|
"@nextcloud/auth": "^2.2.1",
|
|
"@nextcloud/axios": "^2.4.0",
|
|
"@nextcloud/event-bus": "^3.1.0",
|
|
"@nextcloud/files": "^3.0.0",
|
|
"@nextcloud/l10n": "^2.2.0",
|
|
"@nextcloud/router": "^2.2.0",
|
|
"vue": "^2.7.14"
|
|
},
|
|
"devDependencies": {
|
|
"@nextcloud/browserslist-config": "^3.0.0",
|
|
"@nextcloud/eslint-config": "^8.3.0",
|
|
"@nextcloud/stylelint-config": "^2.3.1",
|
|
"@nextcloud/vite-config": "^1.1.0",
|
|
"@vue/tsconfig": "^0.4.0",
|
|
"prettier": "^3.0.3",
|
|
"stylelint-config-css-modules": "^4.3.0",
|
|
"typescript": "^5.2.2",
|
|
"typescript-plugin-css-modules": "^5.0.2",
|
|
"vite": "^4.5.5"
|
|
},
|
|
"prettier": {
|
|
"useTabs": true,
|
|
"semi": false,
|
|
"singleQuote": true,
|
|
"bracketSameLine": true,
|
|
"tabWidth": 4
|
|
},
|
|
"browserslist": [
|
|
"extends @nextcloud/browserslist-config"
|
|
],
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"@nextcloud/eslint-config/typescript"
|
|
]
|
|
},
|
|
"engines": {
|
|
"node": "^20",
|
|
"npm": "^9"
|
|
}
|
|
}
|