-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.48 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.48 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
{
"name": "keebdex-database-sync",
"version": "1.0.0",
"description": "Automates the extraction and transformation of keycap data from both your Google Docs files and official maker websites/APIs. It then seamlessly migrates everything into a centralized database, making your precious keyset collection easily searchable, organized, and manageable.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"gdocs-importer": "node artisans/gdocs-importer.js",
"maker-scraper": "node artisans/maker-scraper.js",
"vendor-scraper": "node keysets/vendor-scraper.js",
"sync-keysets": "node jobs/sync-keysets.js",
"prune-images": "node jobs/prune-images.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anhthang/keebdex-database-sync.git"
},
"author": "Anh Thang Bui <buianhthang89@gmail.com> (https://anhthang.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/anhthang/keebdex-database-sync/issues"
},
"homepage": "https://github.com/anhthang/keebdex-database-sync#readme",
"dependencies": {
"@googleapis/docs": "^9.2.1",
"@googleapis/drive": "^20.1.0",
"@supabase/supabase-js": "^2.102.1",
"axios": "^1.14.0",
"bluebird": "^3.7.2",
"cheerio": "^1.2.0",
"crc": "^4.3.2",
"date-fns": "^4.1.0",
"deepmerge": "^4.3.1",
"dotenv": "^17.4.1",
"google-auth-library": "^10.6.2",
"ini": "^6.0.0",
"lodash": "^4.18.1",
"slugify": "^1.6.9"
}
}