-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.98 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.98 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": "touhou-tagger",
"version": "2.2.0",
"description": "从 THBWiki 自动填写东方 Project CD 曲目信息.",
"main": "dist/core/index.js",
"engines": {
"bun": "1.3.5",
"node": ">= 22"
},
"bin": {
"thtag": "dist/cli/index.js"
},
"scripts": {
"start": "node dist/cli/index.js",
"watch": "tsc --watch --sourceMap",
"lint": "eslint . --ext .cjs,.ts,.vue",
"eslint-fix": "eslint . --ext .cjs,.ts,.vue --fix",
"build": "tsc",
"build:executable": "bun bun-build.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/the1812/Touhou-Tagger.git"
},
"keywords": [
"touhou",
"touhou-project",
"music-tagger",
"mp3",
"metadata"
],
"author": "Grant Howard",
"license": "MIT",
"bugs": {
"url": "https://github.com/the1812/Touhou-Tagger/issues"
},
"homepage": "https://github.com/the1812/Touhou-Tagger#readme",
"dependencies": {
"@squoosh/lib": "0.5.3",
"axios": "1.7.9",
"flac-tagger": "1.0.7",
"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": {
"@the1812/eslint-config": "1.2.0",
"@types/bun": "^1.3.5",
"@types/node": "^25.5.0",
"@types/yargs": "17.0.12",
"@typescript-eslint/eslint-plugin": "6.13.0",
"@typescript-eslint/parser": "6.13.0",
"eslint": "8.54.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-prettier": "5.0.1",
"prettier": "3.1.0",
"typescript": "^5.9.3"
},
"packageManager": "pnpm@10.4.0+sha512.6b849d0787d97f8f4e1f03a9b8ff8f038e79e153d6f11ae539ae7c435ff9e796df6a862c991502695c7f9e8fac8aeafc1ac5a8dab47e36148d183832d886dd52",
"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"
}
}