-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.17 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
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "auto-update-web-scrobbler",
"version": "1.0.0",
"description": "Synchronize Web Scrobbler LevelDB file with fetch-youtube-bgm",
"homepage": "https://github.com/tomacheese/auto-update-web-scrobbler",
"bugs": {
"url": "https://github.com/tomacheese/auto-update-web-scrobbler/issues"
},
"license": "MIT",
"author": "Tomachi <[email protected]>",
"private": true,
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "[email protected]:tomacheese/auto-update-web-scrobbler.git"
},
"scripts": {
"dev": "tsx watch ./src/main.ts",
"start": "tsx ./src/main.ts",
"package": "run-z clean compile packing",
"packing": "ncc build ./dist/main.js -o output/ -m",
"compile": "tsc -p .",
"clean": "rimraf dist output",
"fix:prettier": "prettier --write src",
"lint:tsc": "tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"fix": "run-z fix:prettier fix:eslint",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:prettier": "prettier --check src",
"test": "jest --runInBand --passWithNoTests --detectOpenHandles --forceExit"
},
"devDependencies": {
"@book000/eslint-config": "1.7.126",
"@book000/node-utils": "1.13.418",
"@types/jest": "29.5.14",
"@types/lodash": "4.17.14",
"@types/node": "22.10.5",
"@vercel/ncc": "0.38.3",
"axios": "1.7.9",
"eslint": "9.18.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"level": "9.0.0",
"lodash": "4.17.21",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"run-z": "2.1.0",
"ts-jest": "29.2.5",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"jest": {
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.ts$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"moduleFileExtensions": [
"js",
"ts"
],
"setupFilesAfterEnv": [
"jest-expect-message"
]
},
"packageManager": "[email protected]"
}