-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.09 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.09 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
{
"name": "logseq-worktime-table",
"version": "0.1.0",
"description": "Logseq plugin: enter up to 10 worktime rows and insert a markdown table.",
"license": "Apache-2.0",
"scripts": {
"dev": "parcel index.html --cache-dir .parcel-cache-dev",
"clean": "node scripts/clean.mjs",
"build": "node scripts/clean.mjs && parcel build --public-url ./ --no-source-maps index.html",
"pack": "node scripts/clean.mjs && node scripts/pack.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@logseq/libs": "^0.2.12",
"@parcel/compressor-raw": "^2.16.4",
"@parcel/transformer-inline-string": "^2.16.4",
"parcel": "^2.16.4",
"typescript": "^5.5.4",
"vitest": "^3.2.4"
},
"overrides": {
"dompurify": "3.3.3",
"lodash-es": "4.17.23"
},
"logseq": {
"title": "Worktime Table",
"id": "logseq-worktime-table",
"icon": "./icon.svg",
"main": "dist/index.html"
},
"dependencies": {
"html-to-image": "^1.11.13"
},
"sponsors": [
"https://www.buymeacoffee.com/wiegi"
]
}