-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
70 lines (70 loc) · 1.72 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
{
"name": "@nextcloud/axios",
"version": "2.5.0",
"description": "Axios client for Nextcloud",
"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"
}
},
"files": [
"dist/",
"CHANGELOG.md"
],
"scripts": {
"build": "vite --mode production build",
"dev": "vite --mode development build",
"watch": "vite --mode development build --watch",
"lint": "eslint lib test",
"lint:fix": "eslint --fix lib test",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:types": "tsc --noEmit",
"test:watch": "vitest run --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud/nextcloud-axios.git"
},
"keywords": [
"nextcloud",
"http",
"axios",
"csrf"
],
"author": "Christoph Wurst",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nextcloud/nextcloud-axios/issues"
},
"homepage": "https://github.com/nextcloud/nextcloud-axios#readme",
"dependencies": {
"@nextcloud/auth": "^2.4.0",
"@nextcloud/router": "^3.0.1",
"axios": "^1.7.7"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/event-bus": "^3.3.1",
"@nextcloud/vite-config": "^2.2.2",
"@vitest/coverage-v8": "^2.1.3",
"happy-dom": "^15.7.4",
"typescript": "^5.5.4",
"vite": "^5.4.10",
"vitest": "^2.0.2"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}