-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "bangumi-sync",
"version": "1.0.0",
"description": "A script that automatically syncs all anime collections from bgm.tv to Anilist.",
"main": "build/main.js",
"scripts": {
"start": "npm run build && node build/main.js",
"token": "npm run build && node build/utils/get_token.js",
"start-server": "npm run build && node build/main.js --server",
"build": "rimraf ./build && tsc"
},
"keywords": [
"bangumi",
"anilist",
"anime",
"sync",
"node",
"typescript"
],
"author": "ykozxy",
"license": "MIT",
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/node": "^17.0.31",
"@types/node-notifier": "^8.0.2",
"@types/string-similarity": "^4.0.0",
"rimraf": "^3.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"axios": "^0.27.2",
"chalk": "4.1.2",
"cli-progress": "^3.11.0",
"express": "^4.21.1",
"fuse.js": "^6.6.0",
"fuzzysort": "^1.2.1",
"limiter": "^2.1.0",
"node-notifier": "^10.0.1",
"open": "^8.4.0",
"string-similarity": "^4.0.4"
}
}