-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.11 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.11 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
{
"name": "@lifeforge/lifeforge--scores-library",
"displayName": "Scores Library",
"repository": {
"type": "git",
"url": "https://github.com/lifeforge-app/lifeforge-module-scoresLibrary.git"
},
"version": "0.0.5",
"author": "Melvin Chia <melvinchia623600@gmail.com>",
"description": "Easily save and organize your music scores.",
"scripts": {
"types": "cd client && bun tsc",
"build:client": "cd client && bun run vite build",
"build:server": "bun build ./server/index.ts --outdir ./server/dist --target bun --external @lifeforge/server-utils --external zod --external sharp"
},
"dependencies": {
"jsdom": "^27.0.0",
"pdf-page-counter": "^1.0.3",
"pdf-thumbnail": "^1.0.6",
"pdfkit": "^0.17.2",
"sharp": "^0.34.5",
"socket.io": "^4.8.1"
},
"devDependencies": {
"@types/pdf-thumbnail": "^1.0.4",
"@types/pdfkit": "^0.17.3"
},
"lifeforge": {
"icon": "tabler:file-music",
"category": "Storage"
},
"peerDependencies": {
"@lifeforge/server-utils": "workspace:*",
"@lifeforge/ui": "workspace:*",
"@lifeforge/shared": "workspace:*"
}
}