This repository was archived by the owner on Apr 13, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.01 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
72
73
74
{
"name": "@ryanke/apollo",
"version": "0.3.0",
"description": "Parse and organise files",
"license": "GPL-3.0",
"author": "Ryan <ryan@sylver.me>",
"repository": "http://github.com/NotSylver/apollo",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "dist/index.d.ts",
"keywords": [
"torrent",
"parse torrent",
"parse filename",
"parser"
],
"scripts": {
"test": "vitest run",
"build": "rm -rf ./dist && tsup src/index.ts src/cli.ts --format cjs,esm --dts --minify --sourcemap",
"cli": "tsup src/cli.ts --format cjs,esm && node dist/cli.js",
"prepack": "pnpm run build",
"generate:qualities": "esno scripts/generate-qualities.ts",
"generate:titles-db": "esno scripts/generate-titles-db.ts",
"generate:release-groups": "esno scripts/generate-release-groups.ts"
},
"files": [
"dist",
"src"
],
"bin": {
"apollo": "./dist/cli.js"
},
"dependencies": {
"@types/memoizee": "^0.4.8",
"@types/ms": "^0.7.31",
"better-sqlite3": "^7.6.2",
"iso-639-1": "^2.1.15",
"kysely": "^0.21.3",
"languagedetect": "^2.0.0",
"lru-cache": "^7.14.0",
"memoizee": "^0.4.15",
"meow": "^9.0.0",
"ms": "^2.1.3",
"p-queue": "6",
"scrape-it": "^5.3.2",
"subtitle": "^4.2.1"
},
"devDependencies": {
"@sylo-digital/scripts": "^1.0.2",
"@types/better-sqlite3": "^7.6.0",
"@types/dedent": "^0.7.0",
"@types/meow": "^5.0.0",
"@types/node": "16",
"@types/node-fetch": "^2.5.11",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"chalk": "4",
"constant-case": "^3.0.4",
"dedent": "^0.7.0",
"escape-string-regexp": "4",
"eslint-plugin-import": "^2.22.1",
"esno": "^0.7.3",
"fastest-levenshtein": "^1.0.16",
"is-admin": "^3.0.0",
"node-fetch": "^2.6.1",
"prettier": "^2.7.1",
"sanitize-filename": "^1.6.3",
"title-case": "^3.0.3",
"ts-morph": "^11.0.3",
"tsup": "^4.12.5",
"typescript": "^4.2.3",
"vitest": "^0.22.1",
"xbytes": "^1.8.0"
}
}