-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
29 lines (29 loc) · 828 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
{
"name": "logseq-plugin-task-check-date",
"version": "2.1.0",
"description": "Plugin enables adding 'completed' property to task upon checking",
"author": "Dmitrii Dushkin (https://github.com/DimitryDushkin)",
"license": "MIT",
"source": "src/index.html",
"scripts": {
"dev": "parcel --public-url .",
"build": "rm -rf dist/* && sleep 1 && parcel build --public-url . --no-source-maps"
},
"devDependencies": {
"@parcel/packager-ts": "2.12.0",
"@parcel/transformer-typescript-types": "2.12.0",
"parcel": "^2.12.0",
"typescript": "^5.4.5"
},
"logseq": {
"main": "dist/index.html",
"title": "Task completion",
"id": "_sppzszglx",
"icon": "icon.png"
},
"dependencies": {
"@logseq/libs": "^0.0.17",
"dayjs": "^1.11.11",
"logseq-dateutils": "^2.1.1"
}
}