-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.14 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@nextcloud/sharing",
"version": "0.4.0",
"description": "Front-end utilities for Nextcloud files sharing",
"keywords": [
"nextcloud",
"sharing"
],
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-sharing"
},
"license": "GPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./public": {
"types": "./dist/public.d.ts",
"default": "./dist/public.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"default": "./dist/ui/index.js"
}
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "npm run build:cleanup && npm run build:source",
"build:cleanup": "tsc --build --clean",
"build:doc": "typedoc --out dist/doc lib/index.ts lib/publicShare.ts lib/ui/index.ts && touch dist/doc/.nojekyll",
"build:source": "tsc",
"dev": "vite --mode development build",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest run --watch",
"ts:check": "tsc --noEmit",
"watch": "vite --mode development build --watch"
},
"dependencies": {
"@nextcloud/initial-state": "^3.0.0",
"is-svg": "^6.1.0"
},
"devDependencies": {
"@nextcloud/eslint-config": "^9.0.0-rc.8",
"@nextcloud/files": "^4.0.0",
"@types/node": "^25.5.0",
"@vitest/coverage-v8": "^4.1.2",
"eslint": "^9.29.0",
"happy-dom": "^20.8.9",
"typedoc": "^0.28.18",
"typescript": "^5.9.3",
"vitest": "^4.0.7"
},
"optionalDependencies": {
"@nextcloud/files": "^3.12.2 || ^4.0.0"
},
"engines": {
"node": "^20.0.0 || ^22.0.0 || ^24.0.0"
},
"devEngines": {
"packageManager": [
{
"name": "npm",
"version": "^11.3.0",
"onFail": "error"
}
],
"runtime": {
"name": "node",
"version": "^24.0.0",
"onFail": "error"
}
}
}