-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.55 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
{
"name": "ical-browser",
"version": "0.1.4",
"description": "NodeJS and Browser iCalendar file Generator",
"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 2.0",
"ical browser",
"ical node",
"rfc5545",
"ical",
"ics",
"calendar events",
"calendar alarms",
"calendar todo",
"calendar journal"
],
"author": "Denis Baskovsky <baskovsky@ya.ru> (https://baskovsky.ru)",
"license": "MIT",
"bugs": {
"url": "https://github.com/qertis/ical-browser/issues"
},
"engines": {
"node": ">=20.x"
},
"files": [
"/dist"
],
"homepage": "https://github.com/qertis/ical-browser#readme",
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^22.12.0",
"ical.js": "^2.1.0",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"dependencies": {
"mime-types": "^2.1.35"
}
}