-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 1.52 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
{
"name": "@nextcloud/router",
"version": "3.0.1",
"description": "",
"homepage": "https://github.com/nextcloud-libraries/nextcloud-router#readme",
"author": "Christoph Wurst",
"license": "GPL-3.0-or-later",
"keywords": [
"nextcloud"
],
"repository": {
"type": "git",
"url": "https://github.com/nextcloud-libraries/nextcloud-router"
},
"type": "module",
"main": "dist/index.cjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "vite --mode production build",
"build:doc": "typedoc --out dist/doc lib && touch dist/doc/.nojekyll",
"dev": "vite --mode development build",
"dev:watch": "vite --mode development build --watch",
"lint": "eslint lib",
"lint:fix": "eslint --fix lib",
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@nextcloud/typings": "^1.7.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.0",
"@nextcloud/eslint-config": "^8.3.0",
"@nextcloud/vite-config": "^2.1.0",
"@vitest/coverage-v8": "^2.0.3",
"eslint": "^8.56.0",
"happy-dom": "^15.7.0",
"typedoc": "^0.26.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^2.0.3"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^20.0.0",
"npm": "^10.0.0"
},
"files": [
"dist",
"CHANGELOG.md",
"README.md",
"LICENSE"
]
}