-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "anilistwatched",
"version": "1.0.0",
"module": "src/cli.ts",
"type": "module",
"scripts": {
"start": "bun run src/cli.ts",
"compile": "mkdir -p bin/ ; bun build src/cli.ts --compile --outfile bin/jw-anilist-watched",
"lint": "bun x --bun eslint --max-warnings=0",
"check": "bun x --bun tsc --noEmit --pretty",
"pretty:check": "bun x --bun prettier --check src/",
"pretty:write": "bun x --bun prettier --write src/",
"postinstall": "bun compile"
},
"bin": {},
"keywords": [],
"author": "sjorge",
"license": "MIT",
"description": "Update watched status on anilist.",
"devDependencies": {
"@eslint/core": "^0.9.1",
"@eslint/js": "^9.16.0",
"@types/bun": "latest",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"typescript-eslint": "^8.18.0"
},
"dependencies": {
"@commander-js/extra-typings": "^12.1.0",
"@iarna/toml": "^2.2.5",
"anilist-node": "^1.14.1",
"axios": "^1.7.9",
"commander": "^12.1.0",
"deepmerge-ts": "^7.1.3"
},
"peerDependencies": {
"typescript": "^5.7.2"
}
}