-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.9 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.9 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@nextcloud/axios",
"version": "2.6.0",
"description": "Axios client for Nextcloud",
"keywords": [
"nextcloud",
"http",
"axios",
"csrf"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-axios#readme",
"bugs": {
"url": "https://github.com/nextcloud-libraries/nextcloud-axios/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/nextcloud-axios.git"
},
"license": "GPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"CHANGELOG.md"
],
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest run --watch",
"ts:check": "tsc --noEmit",
"watch": "tsc --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/auth": "^2.6.0",
"axios": "^1.15.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"@nextcloud/eslint-config": "^9.0.0-rc.9",
"@nextcloud/event-bus": "^3.3.3",
"@types/node": "^25.6.0",
"@vitest/browser-playwright": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"msw": "^2.13.3",
"rimraf": "^6.1.3",
"typescript": "^6.0.2",
"vitest": "^4.1.4"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "error"
},
"packageManager": [
{
"name": "npm",
"version": "^11.3.0",
"onFail": "error"
}
]
}
}