-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.07 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
{
"name": "mr-tools",
"version": "0.1.0",
"private": true,
"description": "mr tools - tiny browser-only tools that run entirely on the client.",
"license": "MIT",
"repository": "github:mrxerp/mr.tools",
"homepage": "https://mr.tools",
"scripts": {
"predev": "node scripts/build-tool-index.mjs",
"dev": "astro dev",
"prebuild": "node scripts/build-tool-index.mjs && node scripts/make-icons.mjs",
"build": "astro build",
"preview": "astro preview",
"check": "astro check",
"test": "node scripts/run-tests.mjs",
"smoke": "node scripts/browser-smoke.cjs",
"new": "node scripts/mr-tool-new.mjs",
"icons": "node scripts/make-icons.mjs"
},
"dependencies": {
"astro": "^5.0.0",
"bcryptjs": "^3.0.3",
"docx": "^9.7.1",
"pdf-lib": "^1.17.1",
"pdfjs-dist": "^4.10.38",
"qrcode": "^1.5.4",
"sql-formatter": "^15.8.2",
"xlsx": "^0.18.5",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@astrojs/check": "^0.9.10",
"@types/node": "^22.10.0",
"@types/qrcode": "^1.5.5",
"typescript": "^5.9.3"
}
}