-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 973 Bytes
/
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
{
"name": "placeholder",
"description": "A simple image placeholder service.",
"author": "Kyriakos Nicola",
"license": "MIT",
"version": "0.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "tsx src/index.ts",
"dev": "tsx watch src/index.ts",
"test": "vitest run",
"build": "tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json"
},
"dependencies": {
"exit-hook": "^4.0.0",
"sharp": "^0.33.5",
"text-to-svg": "^3.1.5",
"yaml": "^2.6.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@knicola/dev-config": "^0.3.2",
"@types/node": "^22.7.5",
"@types/sharp": "^0.31.1",
"@types/text-to-svg": "^3.1.4",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^8.57.1",
"tsc-alias": "^1.8.10",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.6"
}
}