forked from 0x7b1/logseq-plugin-automatic-url-title
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 981 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
{
"name": "logseq-plugin-automatic-url-title",
"version": "1.1.0",
"author": "0x7b1",
"description": "Automatically fetches the title of a website and wraps it into markdown link format. Also, renders the favicon of the url next to it.",
"main": "dist/index.html",
"keywords": [],
"license": "MIT",
"logseq": {
"id": "logseq-plugin-automatic-url-title",
"title": "Automatic URL Title",
"icon": "./icon.png"
},
"targets": {
"main": false
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "rm -rf ./dist/*.* && parcel build index.html --public-url ./",
"watch": "rm -rf ./dist/*.* && parcel watch index.html --public-url ./",
"build": "parcel build --no-source-maps index.html --public-url ./"
},
"dependencies": {
"@logseq/libs": "latest"
},
"devDependencies": {
"parcel": "latest"
},
"effect": true
}