-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.06 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
{
"name": "@nextcloud/typings",
"version": "1.9.1",
"description": "Nextcloud TypeScript typings",
"main": "dist/index.js",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts"
},
"./ocs": {
"types": "./lib/ocs.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watchAll"
},
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud/nextcloud-typings#readme",
"author": "Christoph Wurst",
"contributors": [
{
"name": "Christoph Wurst",
"email": "christoph@winzerhof-wurst.at"
},
{
"name": "Christopher Ng",
"email": "chrng8@gmail.com"
}
],
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-typings"
},
"dependencies": {
"@types/jquery": "3.5.16"
},
"devDependencies": {
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"typescript": "^5.3.3"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}