-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.72 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.72 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
63
64
65
66
67
68
69
70
71
{
"name": "lyrictype-sk",
"version": "0.0.1",
"private": true,
"scripts": {
"build": "vite build",
"dev": "vite dev",
"scrape": "npm run update:scrape && npm run update:compare && npm run update:prescrape && npm run update:upload-artists",
"upload": "npm run update:upload-songs && npm run update:update-popular",
"dev:vite": "vite dev",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./jsconfig.json --watch",
"fix-lyrics": "node scripts/fix-null-lyrics.js",
"fix-lyrics-dry": "node scripts/fix-null-lyrics.js --dry-run",
"fix-lyrics-cached": "node scripts/fix-null-lyrics.js --check-cached-only",
"update:scrape": "node scripts/scrape-artists.js",
"update:compare": "node scripts/compare-artists.js",
"update:prescrape": "node scripts/prescrape-new-artists.js",
"update:upload-artists": "node scripts/upload-artists.js",
"update:upload-songs": "node scripts/upload-songs.js",
"update:update-popular": "node scripts/update-popular-flags.js",
"test:scrape": "node scripts/scrape-artists.js --letters j --limit 10",
"test:compare": "node scripts/compare-artists.js",
"test:prescrape": "node scripts/prescrape-new-artists.js --limit 5 --max-songs 2",
"test:upload-artists": "node scripts/upload-artists.js --limit 5 --dry-run",
"test:upload-songs": "node scripts/upload-songs.js --limit 5 --dry-run",
"test:update-popular": "node scripts/update-popular-flags.js --dry-run",
"test:all": "npm run test:scrape && npm run test:compare && npm run test:prescrape && npm run test:upload-artists && npm run test:upload-songs && npm run test:update-popular",
"cleanup:legacy-fields": "node scripts/cleanup-legacy-image-fields.js",
"cleanup:legacy-fields-dry": "node scripts/cleanup-legacy-image-fields.js --dry-run"
},
"type": "module",
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0",
"firebase-tools": "^15.1.0",
"svelte": "^4.2.7",
"svelte-check": "^3.6.0",
"typescript": "^5.0.0",
"vite": "^5.0.3"
},
"dependencies": {
"axios": "^1.13.2",
"chalk": "^5.6.2",
"cheerio": "^1.1.2",
"cli-progress": "^3.12.0",
"firebase": "^12.2.1",
"firebase-admin": "^12.1.0",
"js-cookie": "^3.0.5",
"normalize-text": "^2.6.0",
"pako": "^2.1.0",
"textfit": "^2.4.0",
"unidecode": "^1.1.0"
},
"engines": {
"node": ">=18"
},
"author": "LyricType",
"license": "MIT",
"keywords": [
"lyrics",
"scraping",
"genius",
"music",
"svelte",
"sveltekit"
]
}