-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.63 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.63 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
59
60
61
62
63
64
{
"name": "@nextcloud/browser-storage",
"version": "0.5.0",
"description": "Browser storage (e.g. local storage) abstraction for Nextcloud apps",
"keywords": [
"nextcloud"
],
"homepage": "https://github.com/nextcloud-libraries/nextcloud-browser-storage#readme",
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-browser-storage"
},
"license": "GPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --build --clean && tsc",
"build:doc": "typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll",
"dev": "tsc --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"ts:check": "tsc --noEmit"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"devDependencies": {
"@nextcloud/eslint-config": "^9.0.0-rc.9",
"@types/node": "^25.6.0",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.0",
"happy-dom": "^20.8.9",
"typedoc": "^0.28.18",
"typescript": "5.9.3",
"vitest": "^4.0.7"
},
"engines": {
"node": "^24 || ^22 || ^20"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "^24",
"onFail": "error"
},
"packageManager": [
{
"name": "npm",
"version": "^11.3.0",
"onFail": "error"
}
]
}
}