-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.02 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.02 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
{
"name": "@nextcloud/notify_push",
"version": "1.3.1",
"description": "A javascript client for notify_push events",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Nextcloud GmbH and Nextcloud contributors",
"license": "AGPL-3.0-or-later",
"keywords": [
"nextcloud"
],
"repository": {
"type": "git",
"url": "https://github.com/icewind1991/notify_push-client.git"
},
"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",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@nextcloud/axios": "^2.5.2",
"@nextcloud/capabilities": "^1.2.1",
"@nextcloud/event-bus": "^3.3.3"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.1.2",
"jest": "^30.2.0",
"typedoc": "^0.28.14",
"typescript": "^5.9.3"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
]
}