-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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
{
"name": "@nextcloud/logger",
"version": "3.0.2",
"description": "Generic JavaScript logging interface for Nextcloud apps and libraries",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc",
"check-types": "tsc --noEmit",
"dev": "vite --mode development build",
"dev:watch": "vite --mode development build --watch",
"lint": "eslint lib",
"lint:fix": "eslint lib --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-logger#readme",
"author": "Christoph Wurst",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-logger"
},
"dependencies": {
"@nextcloud/auth": "^2.4.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/typings": "^1.9.1",
"@nextcloud/vite-config": "^2.3.1",
"@types/node": "^20.14.12",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.1",
"happy-dom": "^14.12.3",
"typedoc": "^0.27.7",
"typescript": "^5.7.3",
"vite": "^5.4.11",
"vitest": "^1.5.1"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"files": [
"dist/",
"CHANGELOG.md"
]
}