This repository was archived by the owner on Dec 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.29 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
{
"name": "wakitsu",
"version": "5.8.2",
"description": "Hobby project for managing anime watch list on Kitsu through CLI",
"type": "module",
"main": "bin/main.js",
"bin": {
"wak": "./bin/main.js"
},
"scripts": {
"dev": "cd test && node --enable-source-maps ../bin/main.js",
"build": "rimraf ./bin/ && tsc -b -f"
},
"files": [
"/bin/**/**.js",
"**.md"
],
"keywords": [
"anime",
"track",
"kitsu",
"update",
"progress"
],
"bugs": {
"url": "https://github.com/Jaeiya/wakitsu/issues"
},
"engines": {
"node": ">= 18"
},
"homepage": "https://github.com/Jaeiya/wakitsu#readme",
"repository": "https://github.com/Jaeiya/wakitsu",
"author": "Jaeiya",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.14.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"cross-env": "^7.0.3",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.4",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"open": "^9.1.0",
"zod": "^3.20.6"
}
}