-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 905 Bytes
/
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
{
"name": "@cirqusde/google-calendar-sync",
"version": "1.1.5",
"repository": "https://github.com/cirqusde/google-calendar-sync",
"description": "Sync events from your private Google Calendar to your work Google calendar.",
"author": "Simon Leiß",
"license": "MIT",
"bin": "dist/index.js",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node --require ts-node/register index.ts",
"prepack": "tsc && chmod +x dist/index.js"
},
"keywords": [
"google",
"calendar",
"sync",
"work",
"private"
],
"devDependencies": {
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"eslint": "^8.13.0",
"typescript": "^4.6.3"
},
"dependencies": {
"googleapis": "^100.0.0",
"moment": "^2.29.2",
"node-ical": "^0.16.1",
"ts-node": "^10.7.0"
}
}