-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 768 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 768 Bytes
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
{
"name": "MuseSheets",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"type": "module",
"bin": {
"musesheets": "dist/index.js"
},
"scripts": {
"build": "npx tsc",
"start": "npm run build && nodemon ./dist/index.js -- --server",
"cli": "npm run build && node ./dist/index.js"
},
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"express": "^4.18.3",
"puppeteer": "^22.4.1",
"svg-to-pdfkit": "^0.1.8"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/pdfkit": "^0.13.4",
"@types/puppeteer": "^7.0.4",
"@types/svg-to-pdfkit": "^0.1.3",
"nodemon": "^3.1.0",
"pdfkit": "^0.14.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
}
}