-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.34 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.34 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
{
"name": "@nextcloud/notify_push",
"version": "1.4.0",
"description": "A javascript client for notify_push events",
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud-libraries/notify_push-client",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/notify_push-client.git"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"AUTHORS.md",
"LICENSES"
],
"scripts": {
"build": "tsc",
"build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
"check-types": "tsc",
"dev": "babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@nextcloud/axios": "^2.6.0",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/event-bus": "^3.3.3"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"typedoc": "^0.28.17",
"typescript": "^5.9.3"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3"
}
],
"runtime": {
"name": "node",
"version": "^24"
}
}
}