-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "@nextcloud/auth",
"version": "2.4.0",
"description": "Nextcloud helpers related to authentication and the current user",
"type": "module",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"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 run --watch",
"lint": "eslint lib test *.ts",
"lint:fix": "eslint --fix lib test",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch"
},
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud/nextcloud-auth#readme",
"author": "Christoph Wurst",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/nextcloud-auth"
},
"dependencies": {
"@nextcloud/browser-storage": "^0.4.0",
"@nextcloud/event-bus": "^3.3.1"
},
"devDependencies": {
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/vite-config": "^2.3.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.1",
"happy-dom": "^14.12.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vitest": "^2.0.2"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}