-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "ical-browser",
"version": "0.2.0",
"description": "A library for generating iCalendar (ICS) files in Node.js and the browser, supporting events, todos, journals, alarms, and timezones.",
"type": "module",
"main": "dist/cjs/index.cjs",
"module": "dist/esm/index.mjs",
"source": "lib/index.ts",
"typings": "dist/types/types.d.ts",
"types": "dist/types/types.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.cjs",
"import": "./dist/esm/index.mjs"
}
},
"scripts": {
"prebuild": "rm -rf dist",
"build": "tsc --build ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json ; mv dist/esm/index.js dist/esm/index.mjs ; mv dist/cjs/index.js dist/cjs/index.cjs",
"watch": "tsx watch lib/index.ts",
"test": "node --import tsx --test test/index.test.ts",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/qertis/ical-browser.git"
},
"keywords": [
"iCalendar generator",
"ics file generator",
"calendar library",
"event scheduling",
"todo management",
"journal entries",
"alarm notifications",
"timezone support",
"RFC 5545",
"icalendar events"
],
"author": "Denis Baskovsky <baskovsky@ya.ru> (https://baskovsky.ru)",
"license": "MIT",
"bugs": {
"url": "https://github.com/qertis/ical-browser/issues"
},
"engines": {
"node": ">=22.x"
},
"files": [
"/dist"
],
"homepage": "https://github.com/qertis/ical-browser#readme",
"devDependencies": {
"@types/mime-types": "^3.0.1",
"@types/node": "^22.19.17",
"ical.js": "^2.2.1",
"tsx": "^4.21.0",
"typescript": "^5.7.3"
},
"dependencies": {
"mime-types": "^3.0.2"
}
}