-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.3 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
54
55
56
57
{
"name": "r2-index",
"version": "1.0.3",
"description": "R2Index is a package that makes handling Cloudflare R2 event notifications a bit easier.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"test": "vitest run",
"deploy": "pnpm run build && pnpm publish"
},
"keywords": [
"cloudflare",
"r2",
"workers",
"queues",
"buckets",
"notifications",
"events",
"event"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/samhoogantink/r2-index.git"
},
"homepage": "https://github.com/samhoogantink/r2-index#readme",
"author": "@samhoogantink",
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20240925.0",
"@types/node": "^22.7.2",
"miniflare": "^3.20240925.0",
"tsup": "^8.3.0",
"typescript": "^5.6.2",
"vitest": "^2.1.1"
}
}