cobalt/package.json
wukko a4a9af6120 remade localization system once again
- new localization system: fast, dynamic, way more organized
- localization strings are WAY more descriptive
- it's now easier to add support for other languages (just one loc file instead of five)
- localization now falls back to english if localized string isnt available
- got rid of all static language selectors (probably)
- slightly updated english and russian strings
- miscellaneous settings items have been bundled together and moved to the bottom, cause they're used the least
- bottom links should no longer touch the popup border on overflow
- rearranged popup order in the rendered page
- bumped version up to 2.2.5

if you see strings that are like this: !!EXAMPLE!! or withoutspace please file an issue on github
2022-07-24 16:54:05 +06:00

37 lines
954 B
JSON

{
"name": "cobalt",
"description": "probably the friendliest social media downloader yet",
"version": "2.2.5",
"author": "wukko",
"exports": "./cobalt.js",
"type": "module",
"engines": {
"node": ">=14.16"
},
"scripts": {
"start": "node src/cobalt",
"setup": "node src/modules/setup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wukko/cobalt.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/wukko/cobalt/issues"
},
"homepage": "https://github.com/wukko/cobalt#readme",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.17.1",
"express-rate-limit": "^6.3.0",
"ffmpeg-static": "^5.0.0",
"got": "^12.1.0",
"node-cache": "^5.1.2",
"url-pattern": "^1.0.3",
"xml-js": "^1.6.11",
"ytdl-core": "4.11.0"
}
}