-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.7 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
{
"name": "touhou-tagger",
"version": "2.3.0",
"description": "从 THBWiki 自动填写东方 Project CD 曲目信息.",
"keywords": [
"metadata",
"mp3",
"music-tagger",
"touhou",
"touhou-project"
],
"homepage": "https://github.com/the1812/Touhou-Tagger#readme",
"bugs": {
"url": "https://github.com/the1812/Touhou-Tagger/issues"
},
"license": "MIT",
"author": "Grant Howard",
"repository": {
"type": "git",
"url": "git+https://github.com/the1812/Touhou-Tagger.git"
},
"bin": {
"thtag": "dist/cli/index.js"
},
"type": "module",
"main": "dist/core/index.js",
"scripts": {
"start": "node dist/cli/index.js",
"test": "vitest run",
"watch": "tsc --watch --sourceMap",
"lint": "oxlint --type-aware",
"lint:fix": "oxlint --type-aware --fix",
"format": "oxfmt .",
"format:check": "oxfmt . --check",
"build": "tsc",
"build:executable": "bun bun-build.ts"
},
"dependencies": {
"@squoosh/lib": "0.5.3",
"axios": "1.7.9",
"flac-tagger": "2.0.0",
"fuse.js": "6.6.2",
"glob": "10.2.7",
"image-type": "4.1.0",
"imageinfo": "1.0.4",
"linkedom": "0.16.4",
"node-id3": "0.2.3",
"ora": "5.4.1",
"yargs": "17.5.1"
},
"devDependencies": {
"@types/bun": "1.3.14",
"@types/node": "25.9.3",
"@types/yargs": "17.0.12",
"oxfmt": "0.54.0",
"oxlint": "1.69.0",
"oxlint-tsgolint": "0.23.0",
"typescript": "6.0.3",
"vitest": "^4.1.9"
},
"engines": {
"bun": "1.3.5",
"node": ">= 22"
},
"packageManager": "bun@1.3.5",
"patchedDependencies": {
"node-id3@0.2.3": "patches/node-id3@0.2.3.patch",
"@squoosh/lib@0.5.3": "patches/@squoosh__lib@0.5.3.patch"
}
}