-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 916 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
{
"name": "s3kv",
"version": "1.0.1",
"description": "S3KV is a lightweight TypeScript package that provides a JSON key-value store built on top of AWS S3 and CloudFront. It offers a simple interface for storing and retrieving JSON data with low-latency performance, leveraging the global distribution capabilities of CloudFront.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/xdajay/s3kv.git"
},
"scripts": {
"build": "tsc",
"prepare": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"s3",
"kv",
"json",
"storage"
],
"author": "Ajay Thakur",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudfront": "^3.651.1",
"@aws-sdk/client-s3": "^3.614.0",
"axios": "^1.7.7"
},
"devDependencies": {
"@types/node": "^22.5.5",
"typescript": "^4.5.4"
}
}