-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
48 lines (48 loc) · 1.26 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
{
"name": "@dicebear/api",
"private": true,
"license": "MIT",
"author": "Florian Körner <contact@florian-koerner.com>",
"type": "module",
"scripts": {
"predev": "tsx ./scripts/build-fonts.ts",
"dev": "tsx --watch ./src/server.ts",
"prebuild": "tsx ./scripts/build-fonts.ts",
"build": "tsc --build",
"start": "node ./dist/server.js",
"test": "node --test tests/*.js"
},
"workspaces": [
"./versions/*"
],
"dependencies": {
"@dicebear/api-5": "*",
"@dicebear/api-6": "*",
"@dicebear/api-7": "*",
"@dicebear/api-8": "*",
"@dicebear/api-9": "*",
"@dicebear/converter": "^9.2.2",
"@fastify/cors": "^9.0.1",
"change-case": "^5.4.4",
"fastify": "^4.28.1",
"qs": "^6.13.0"
},
"devDependencies": {
"@fontsource/noto-sans": "^5.1.0",
"@fontsource/noto-sans-jp": "^5.1.0",
"@fontsource/noto-sans-kr": "^5.1.0",
"@fontsource/noto-sans-sc": "^5.1.0",
"@fontsource/noto-sans-thai": "^5.1.0",
"@tsconfig/node20": "^20.1.4",
"@types/json-schema": "^7.0.15",
"@types/node": "^20.14.8",
"@types/qs": "^6.9.16",
"@woff2/woff2-rs": "^1.0.1",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
},
"engines": {
"node": "^18.20 || >=20.10"
}
}