-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.28 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.28 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
{
"name": "@marvae24/douban-cli",
"version": "0.3.0",
"description": "Douban CLI - browse movies, TV shows, search from terminal | 豆瓣命令行工具",
"type": "module",
"main": "dist/index.js",
"bin": {
"douban": "dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"postbuild": "chmod +x dist/index.js",
"ensure-bin-permission": "chmod +x dist/index.js",
"lint": "eslint src",
"test": "vitest run"
},
"keywords": [
"douban",
"douban-cli",
"cli",
"movie",
"tv",
"book",
"豆瓣",
"电影",
"影视",
"top250",
"rating",
"search",
"terminal",
"command-line"
],
"author": "Marvae",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Marvae/douban-cli.git"
},
"homepage": "https://github.com/Marvae/douban-cli",
"dependencies": {
"@steipete/sweet-cookie": "^0.2.0",
"commander": "^14.0.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"eslint": "^8.57.1",
"typescript": "^5.0.0",
"vitest": "^4.1.0"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=22"
}
}