-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 871 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
{
"name": "logseq-time-recorder",
"version": "0.4.2",
"description": "A simple time recorder (punch clock) plugin for Logseq.",
"author": "5hir0kur0",
"license": "MIT",
"scripts": {
"dev": "parcel ./index.html",
"build": "parcel build --public-url . --no-source-maps index.html",
"lint": "eslint src/*.ts",
"format": "prettier --write ."
},
"devDependencies": {
"@eslint/js": "^9.11.1",
"@logseq/libs": "^0.0.17",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"parcel": "^2.12.0",
"prettier": "3.3.3",
"typescript-eslint": "^8.7.0"
},
"logseq": {
"name": "Time Recorder",
"main": "dist/index.html",
"icon": "icon.png",
"id": "logseq-time-recorder"
},
"dependencies": {
"date-fns": "^4.1.0"
}
}