-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.34 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
{
"name": "fastify-cloudinary",
"version": "2.0.0",
"description": "Plugin to share a common Cloudinary connection across Fastify.",
"main": "./dist/fastify-cloudinary.cjs",
"module": "./dist/fastify-cloudinary.js",
"types": "./dist/src/fastify-cloudinary.d.ts",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/fastify-cloudinary.js",
"require": "./dist/fastify-cloudinary.cjs",
"types": "./dist/src/fastify-cloudinary.d.ts"
}
},
"scripts": {
"build": "vite build",
"unit": "vitest --run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Vanilla-IceCream/fastify-cloudinary.git"
},
"keywords": [
"fastify",
"cloudinary",
"multipart"
],
"author": "Vanilla IceCream",
"license": "MIT",
"bugs": {
"url": "https://github.com/Vanilla-IceCream/fastify-cloudinary/issues"
},
"homepage": "https://github.com/Vanilla-IceCream/fastify-cloudinary#readme",
"dependencies": {
"cloudinary": "^2.5.0",
"fastify-plugin": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.16.5",
"@vitest/coverage-v8": "^2.1.1",
"axios": "^1.7.7",
"fastify": "^5.0.0",
"form-data": "^4.0.0",
"typescript": "^5.6.2",
"vite": "^5.4.6",
"vite-plugin-dts": "^4.2.1",
"vitest": "^2.1.1"
}
}