-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.36 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "logseq-progressbar",
"version": "1.2.0",
"author": "Danzu",
"description": "Visualize task completion as segmented progress bars in Logseq DB graphs",
"license": "MIT",
"private": true,
"homepage": "https://github.com/hdansou/logseq-progressbar#readme",
"bugs": {
"url": "https://github.com/hdansou/logseq-progressbar/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hdansou/logseq-progressbar.git"
},
"keywords": [
"logseq",
"logseq-plugin",
"logseq-db",
"progress-bar",
"tasks",
"productivity"
],
"engines": {
"node": ">=20"
},
"logseq": {
"id": "logseq-progressbar",
"title": "Progress Bar",
"icon": "./icon.svg",
"main": "dist/index.html",
"supportsDB": true,
"supportsDBOnly": true,
"minSDKVersion": "0.3.2"
},
"scripts": {
"dev": "vite build --watch",
"dev:serve": "vite",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@logseq/libs": "^0.3.3"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^5.0.0",
"vite": "^7.3.2",
"vite-plugin-logseq": "^1.1.2",
"vitest": "^3.0.0"
},
"overrides": {
"dompurify": "^3.4.2",
"lodash-es": "^4.18.1",
"picomatch": "^4.0.4",
"postcss": "^8.5.13"
}
}