-
Notifications
You must be signed in to change notification settings - Fork 917
/
Copy pathpackage.json
41 lines (41 loc) · 1022 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
35
36
37
38
39
40
41
{
"name": "@webstudio-is/asset-uploader",
"version": "0.0.0",
"description": "Webstudio Asset Uploader",
"author": "Webstudio <github@webstudio.is>",
"homepage": "https://webstudio.is",
"type": "module",
"scripts": {
"typecheck": "tsc",
"test": "vitest run"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@smithy/signature-v4": "^4.2.3",
"@webstudio-is/fonts": "workspace:*",
"@webstudio-is/sdk": "workspace:*",
"@webstudio-is/trpc-interface": "workspace:*",
"fontkit": "^2.0.4",
"image-size": "^1.1.1",
"immer": "^10.1.1",
"nanoid": "^5.0.8",
"warn-once": "^0.1.1"
},
"devDependencies": {
"@types/fontkit": "^2.0.7",
"@webstudio-is/tsconfig": "workspace:*",
"vitest": "^2.1.8",
"zod": "^3.22.4"
},
"exports": {
".": {
"webstudio": "./src/index.ts"
},
"./index.server": {
"webstudio": "./src/index.server.ts"
}
},
"license": "AGPL-3.0-or-later",
"private": true,
"sideEffects": false
}