-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
78 lines (78 loc) · 2.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pdf-downloader",
"version": "1.2.3-rc3",
"private": true,
"description": "Recusively convert entire directory trees to PDF and provide the resulting document as download",
"homepage": "https://github.com/rotdrop/nextcloud-app-pdf-downloader.git",
"bugs": {
"url": "https://github.com/rotdrop/nextcloud-app-pdf-downloader.git"
},
"repository": {
"type": "git",
"url": "https://github.com/rotdrop/nextcloud-app-pdf-downloader.git"
},
"license": "agpl",
"author": "Claus-Justus Heine <[email protected]>",
"scripts": {
"build": "webpack --node-env production --progress",
"cs:check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"dev": "webpack --node-env development --progress",
"lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix",
"serve": "webpack --node-env development serve --progress",
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue",
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix",
"watch": "webpack --node-env development --progress --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"devDependencies": {
"@babel/node": "^7.22.10",
"@babel/preset-typescript": "^7.23.2",
"@nextcloud/auth": "^2.2.1",
"@nextcloud/axios": "^2.4.0",
"@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/dialogs": "^5.1.1",
"@nextcloud/eslint-config": "^8.2.1",
"@nextcloud/event-bus": "^3.1.0",
"@nextcloud/files": "^3.1.0",
"@nextcloud/initial-state": "*",
"@nextcloud/l10n": "*",
"@nextcloud/router": "^2.2.1",
"@nextcloud/stylelint-config": "^2.1.2",
"@nextcloud/vue": "^8.10.0",
"@nextcloud/webpack-vue-config": "^6.0.0",
"@rotdrop/nextcloud-vue-components": "file:repositories/nextcloud-vue-components",
"axios": "*",
"babel-jest": "^29.6.4",
"babel-loader": "^9.1.0",
"babel-loader-exclude-node-modules-except": "^1.2.1",
"content-disposition": "*",
"csso-webpack-plugin": "^2.0.0-beta.3",
"eslint-webpack-plugin": "^3.1.1",
"hex-to-css-filter": "^5.4.0",
"html-webpack-plugin": "^5.5.0",
"is-plain-object": "^5.0.0",
"jquery": "^3.6.0",
"mini-css-extract-plugin": "^2.6.1",
"path": "^0.12.7",
"sass": "^1.53.0",
"sass-loader": "^13.1.0",
"svgo-loader": "^4.0.0",
"tinycolor2": "^1.4.2",
"typescript": "^5.2.2",
"vue": "^2.7.15",
"vue-material-design-icons": "^5.1.2",
"webpack": "*",
"webpack-deadcode-plugin": "^0.1.17",
"xml-loader": "^1.2.1",
"xml2js": "*"
},
"engines": {
"node": "^16.0.0",
"npm": "^8.0.0"
}
}