-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
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
{
"name": "@nextcloud/sharing",
"version": "0.2.4",
"description": "Front-end utilities for Nextcloud files sharing",
"keywords": [
"nextcloud"
],
"license": "GPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./public": {
"types": "./dist/public.d.ts",
"import": "./dist/public.mjs",
"require": "./dist/public.cjs"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --out dist/doc lib/index.ts lib/publicShare.ts && touch dist/doc/.nojekyll",
"dev": "vite --mode development build",
"dev:watch": "vite --mode development build --watch",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint lib *.ts",
"lint:fix": "eslint --fix lib *.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest run --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"prettier": "@nextcloud/prettier-config",
"eslintConfig": {
"extends": [
"@nextcloud/eslint-config/typescript",
"prettier"
]
},
"dependencies": {
"@nextcloud/initial-state": "^2.2.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.1",
"@nextcloud/prettier-config": "^1.1.0",
"@nextcloud/vite-config": "^2.0.2",
"@types/node": "^20.14.5",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"happy-dom": "^15.10.2",
"prettier": "^3.3.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
},
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
}
}