-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.51 KB
/
package.json
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
{
"name": "@jmondi/url-to-png",
"version": "2.1.2",
"description": "Start with a url, end up with a png. The Module.",
"type": "module",
"main": "dist/mod.js",
"scripts": {
"clean": "rm -rf dist/*",
"serve": "node -r dotenv/config dist/main.js",
"dev": "tsx --watch src/main.ts | pino-pretty",
"compile": "tsc --project tsconfig.build.json",
"build": "run-s clean compile",
"format": "prettier --write .",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"engines": {
"node": ">= 20",
"pnpm": ">= 9.0.0"
},
"files": [
"dist",
"src"
],
"engineStrict": true,
"dependencies": {
"@aws-sdk/client-s3": "^3.583.0",
"@hono/node-server": "^1.11.1",
"@jmondi/string-encrypt-decrypt": "^0.0.6",
"dotenv": "^16.4.5",
"generic-pool": "^3.9.0",
"hono": "^4.3.10",
"md5": "^2.3.0",
"nano": "^10.1.3",
"pino": "^9.1.0",
"playwright": "^1.44.1",
"sharp": "^0.33.4",
"zod": "^3.23.8",
"zod-ff": "^1.4.0"
},
"devDependencies": {
"@types/md5": "^2.3.5",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.6.0",
"cross-env": "^7.0.3",
"npm-run-all": "^4.1.5",
"pino-pretty": "^11.1.0",
"prettier": "^3.2.5",
"tsx": "^4.11.0",
"typescript": "^5.4.5",
"vitepress": "1.2.2",
"vitest": "^1.6.0",
"vue": "3.4.27"
}
}