-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 956 Bytes
/
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
{
"name": "logseq-book-fetch",
"description": "Logseq plugin that fetches book data based on an ISBN using the Google Books API",
"version": "0.0.2",
"keywords": ["logseq", "logseq-plugin", "Google book Api"],
"main": "dist/index.html",
"targets": {
"main": false
},
"author": "LuloDev",
"scripts": {
"build": "parcel build --no-source-maps src/index.html --public-url ./",
"dev": "parcel build --no-optimize src/index.html --public-url ./"
},
"license": "MIT",
"logseq": {
"title": "Book Fetch",
"icon": "./icon.png",
"id": "logseq-book-fetch"
},
"dependencies": {
"@logseq/libs": "^0.0.17",
"axios": "^1.6.7"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.6.1",
"buffer": "^6.0.3",
"eslint": "^8.57.0",
"eslint-plugin-prettier": "^5.1.3",
"parcel": "^2.9.3",
"prettier": "^3.2.5",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
}
}