-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
66 lines (66 loc) · 1.72 KB
/
package.json
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
{
"name": "touhou-tagger",
"version": "1.11.4",
"description": "从 THBWiki 自动填写东方 Project CD 曲目信息.",
"main": "dist/core/index.js",
"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"
},
"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.6.7",
"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/node": "^18",
"@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.3.2"
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"@squoosh/[email protected]": "patches/@[email protected]"
}
}
}