-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.82 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
{
"name": "@nextcloud/auth",
"version": "2.6.0",
"description": "Nextcloud helpers related to authentication and the current user",
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-auth#readme",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-auth"
},
"license": "GPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --out dist/doc lib/index.ts && touch dist/doc/.nojekyll",
"dev": "vite --mode development build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"watch": "vite --mode development build --watch"
},
"dependencies": {
"@nextcloud/browser-storage": "^0.5.0",
"@nextcloud/event-bus": "^3.3.3",
"@nextcloud/router": "^3.1.0"
},
"devDependencies": {
"@nextcloud/eslint-config": "^9.0.0-rc.9",
"@nextcloud/typings": "^1.10.0",
"@nextcloud/vite-config": "^2.5.2",
"@vitest/browser-playwright": "^4.1.4",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.1",
"msw": "^2.13.4",
"typedoc": "^0.28.19",
"typescript": "^6.0.3",
"vite": "^7.3.2",
"vitest": "^4.0.7"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3.0"
}
],
"runtime": {
"name": "node",
"version": "^24.0.0"
}
}
}