-
Notifications
You must be signed in to change notification settings - Fork 334
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 982 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 982 Bytes
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
{
"name": "douban-backup",
"version": "1.0.0",
"description": "script to handle douban backup",
"exports": "./index.js",
"type": "module",
"scripts": {
"sync": "tsx src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bambooom/douban-backup.git"
},
"keywords": [
"douban",
"notion",
"neodb",
"backup",
"csv",
"rss",
"userscript"
],
"author": "zhuzi <nmz89825@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bambooom/douban-backup/issues"
},
"homepage": "https://github.com/bambooom/douban-backup#readme",
"engines": {
"node": ">=20"
},
"devDependencies": {
"@types/jsdom": "^28.0.0",
"tsx": "^4.21.0"
},
"dependencies": {
"@notionhq/client": "^5.11.1",
"consola": "^3.4.2",
"dayjs": "^1.11.19",
"dotenv": "^17.3.1",
"fast-csv": "^5.0.5",
"got": "^14.6.6",
"jsdom": "^28.1.0",
"rss-parser": "^3.13.0"
}
}