forked from nextcloud/bruteforcesettings
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) 路 1.62 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) 路 1.62 KB
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
{
"name": "bruteforcesettings",
"version": "9.0.0-dev.0",
"description": "Bruteforce settings app",
"license": "AGPL-3.0-or-later",
"author": "Roeland Jago Douma <roeland@famdouma.nl>",
"main": "main.js",
"directories": {
"lib": "lib",
"test": "tests"
},
"scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js",
"lint": "eslint",
"lint:fix": "eslint --fix",
"stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js"
},
"overrides": {
"@emnapi/core": "^1.10.0",
"@emnapi/runtime": "^1.10.0",
"@emnapi/wasi-threads": "^1.2.2",
"@noble/hashes": "^1.8.0"
},
"dependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/dialogs": "^7.3.0",
"@nextcloud/initial-state": "^3.0.0",
"@nextcloud/l10n": "^3.4.1",
"@nextcloud/router": "^3.1.0",
"@nextcloud/vue": "^9.8.2",
"@vue/test-utils": "^2.4.6",
"vue": "^3.5.39",
"vue-material-design-icons": "^5.3.1"
},
"devDependencies": {
"@nextcloud/babel-config": "^1.3.0",
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.1",
"@nextcloud/stylelint-config": "^3.2.2",
"@nextcloud/webpack-vue-config": "^7.0.2",
"@vitejs/plugin-vue": "^6.0.8",
"@vitest/coverage-v8": "^4.1.10",
"jsdom": "^29.1.1",
"vitest": "^4.1.10"
},
"engines": {
"node": "^24.0.0",
"npm": "^11.3.0"
}
}