-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 1.03 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
{
"name": "schedule-block",
"version": "1.7.0",
"description": "A SiYuan plugin for embedding day and week schedule blocks in documents.",
"repository": "https://github.com/fujingzhai/schedule-block",
"homepage": "",
"author": "游夏",
"license": "MIT",
"packageManager": "pnpm@10.32.1",
"type": "module",
"scripts": {
"dev": "pnpm build:plugin && vite build --config vite.config.widget.ts --watch",
"build:plugin": "vite build --config vite.config.plugin.ts",
"build:widget": "vite build --config vite.config.widget.ts",
"build": "pnpm build:plugin && pnpm build:widget && node scripts/copy-static.mjs && node scripts/package.mjs",
"make-install": "pnpm build && node scripts/install.mjs"
},
"dependencies": {
"@fullcalendar/core": "^6.1.19",
"@fullcalendar/daygrid": "^6.1.19",
"@fullcalendar/interaction": "^6.1.19",
"@fullcalendar/timegrid": "^6.1.19",
"html2canvas": "^1.4.1",
"siyuan": "^1.2.1"
},
"devDependencies": {
"typescript": "^5.9.3",
"vite": "^7.2.7"
}
}