-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.03 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.03 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
{
"name": "readwise-reader-api",
"version": "0.5.2",
"description": "An unofficial JavaScript client for the Readwise Reader API",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build",
"prebuild": "npm run clean",
"clean": "rm -rf ./dist",
"build": "tsc",
"prettier": "prettier --write .",
"lint": "prettier --check . && eslint ./src"
},
"author": "Scott Carvalho",
"license": "ISC",
"keywords": [
"readwise",
"readwise-reader",
"api-client",
"typescript",
"javascript"
],
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/eslint__js": "^8.42.3",
"eslint": "^8.57.0",
"globals": "^15.8.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"typescript-eslint": "^7.17.0"
},
"dependencies": {
"axios": "^1.6.8",
"dotenv": "^16.3.1"
},
"files": [
"dist/",
"README.md",
"LICENSE"
]
}