-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.76 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.76 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
{
"name": "@nextcloud/timezones",
"version": "1.0.2",
"description": "A small library containing common time zone logic and data",
"homepage": "https://github.com/nextcloud-libraries/timezones",
"bugs": {
"url": "https://github.com/nextcloud-libraries/timezones/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextcloud-libraries/timezones.git"
},
"license": "AGPL-3.0-or-later",
"author": {
"name": "Richard Steinmetz",
"email": "richard@steinmetz.cloud"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./resources/timezones/zones.json": "./resources/timezones/zones.json"
},
"main": "dist/index.cjs",
"files": [
"README.md",
"CHANGELOG.md",
"LICENSES",
"dist",
"resources/timezones/zones.json"
],
"scripts": {
"build": "vite build --mode=production",
"build:doc": "typedoc --html dist/doc src/index.ts ",
"dev": "vite build --mode=development",
"lint": "eslint --ext=.js,.ts src",
"lint:fix": "eslint --ext=.js,.ts src --fix",
"test": "TZ=UTC vitest run ",
"test:watch": "TZ=UTC vitest watch",
"ts:check": "tsc --noEmit",
"watch": "vite build --mode=development --watch"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"ical.js": "^2.1.0"
},
"devDependencies": {
"@nextcloud/browserslist-config": "^3.0.1",
"@nextcloud/eslint-config": "^8.4.2",
"@nextcloud/vite-config": "^2.4.0",
"@types/node": "^22.14.1",
"typedoc": "^0.28.17",
"typescript": "^5.8.3",
"vite": "^6.4.1",
"vitest": "^3.2.4"
},
"engines": {
"node": "^22.0.0",
"npm": "^10.5.0"
}
}