-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
93 lines (93 loc) · 2.84 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "gsheet-to-calendar",
"version": "0.0.6",
"license": "MIT",
"repository": "git@github.com:makis-san/gsheet-to-calendar.git",
"description": "CLI app and package that uses google spreadsheet api to export calendar data directly into google agenda or other supported methods :)",
"keywords": [
"google",
"calendar",
"spreadsheet",
"cli"
],
"bugs": "https://github.com/makis-san/gsheet-to-calendar/issues",
"author": {
"name": "Santiago Souza",
"url": "https://santiagosouza.dev/"
},
"main": "index.js",
"bin": {
"gsToCalendar": "./dist/cli/cli.js"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"start": "tsx ./src/cli.ts",
"start:help": "tsx ./src/cli.ts --help",
"prod": "npm run build && npm run package",
"dev": "tsx watch ./src/cli.ts",
"build": "rollup -c rollup.config.mjs",
"publish": "cd ./dist/module && npm publish",
"package": "pkg . --output ./bin/gsToCalendar",
"bundle": "cd bin && mv gsToCalendar-macos gsToCalendar && tar -czf gsToCalendar.tar.gz gsToCalendar",
"lint": "eslint ./src/**/*.{js, ts} --no-error-on-unmatched-pattern",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' 'src/**/*.js' 'src/**/*.js' --write",
"pretty-quick": "pretty-quick"
},
"pkg": {
"scripts": "./dist/cli/**/*.js",
"targets": [
"node16-linux-x64",
"node16-macos-x64",
"node16-win-x64"
]
},
"devDependencies": {
"@types/cli-table": "^0.3.1",
"@types/date-fns": "^2.6.0",
"@types/express": "^4.17.17",
"@types/google-spreadsheet": "^3.3.1",
"@types/node": "^18.13.0",
"@types/typescript": "^2.0.0",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"eslint": "^8.34.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"pkg": "^5.8.0",
"prettier": "^2.8.4",
"pretty-quick": "^3.1.3",
"rollup": "^3.10",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^5.1.1",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-url": "^3.0.1",
"ts-node": "^10.9.1",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@googleapis/calendar": "^3.0.0",
"@googleapis/oauth2": "^1.0.0",
"chalk": "^4.1.2",
"cli-spinners": "^2.7.0",
"cli-table": "^0.3.11",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"enquirer": "^2.3.6",
"express": "^4.18.2",
"google-spreadsheet": "^3.3.0",
"ics": "^3.0.1",
"open": "^8.4.1",
"ora": "^5.4.1",
"yargs": "^17.6.2"
}
}