-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "kindle-booklog",
"version": "3.0.0",
"description": "Get Kindle works purchased at Amazon.co.jp and register them in Booklog.",
"homepage": "https://github.com/book000/kindle-booklog",
"bugs": {
"url": "https://github.com/book000/kindle-booklog/issues"
},
"license": "MIT",
"author": "Tomachi",
"private": true,
"main": "dist/main.js",
"repository": {
"type": "git",
"url": "[email protected]:book000/kindle-booklog.git"
},
"scripts": {
"compile": "tsc -p .",
"compile:test": "tsc -p . --noEmit",
"clean": "rimraf dist output",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc",
"fix:prettier": "prettier --write src",
"preinstall": "npx only-allow pnpm",
"start": "tsx ./src/main.ts",
"dev": "tsx watch ./src/main.ts",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"fix": "run-z fix:prettier,fix:eslint",
"fix:eslint": "eslint . -c eslint.config.mjs --fix"
},
"devDependencies": {
"@book000/eslint-config": "1.7.144",
"@book000/node-utils": "1.13.451",
"@types/node": "22.7.5",
"@types/tar-stream": "3.1.3",
"axios": "1.7.9",
"csv-parse": "5.6.0",
"eslint": "9.20.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"iconv-lite": "0.6.3",
"otplib": "12.0.1",
"prettier": "3.5.0",
"puppeteer-core": "24.2.0",
"run-z": "2.1.0",
"tar-stream": "3.1.7",
"tsx": "4.19.2",
"typescript": "5.7.3"
},
"packageManager": "[email protected]+sha512.398035c7bd696d0ba0b10a688ed558285329d27ea994804a52bad9167d8e3a72bcb993f9699585d3ca25779ac64949ef422757a6c31102c12ab932e5cbe5cc92",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild"
]
}
}