-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.01 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.01 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@triptech/cloudflare-worker-rollbar",
"version": "2.0.1",
"description": "A lightweight, TypeScript-first Rollbar client for Cloudflare Workers",
"author": {
"name": "Isaac Rowntree",
"url": "https://github.com/isaacrowntree"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src tests",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/triptechtravel/cloudflare-worker-rollbar.git"
},
"keywords": [
"rollbar",
"cloudflare",
"workers",
"edge",
"error-tracking",
"error-monitoring",
"logging",
"typescript"
],
"bugs": {
"url": "https://github.com/triptechtravel/cloudflare-worker-rollbar/issues"
},
"homepage": "https://github.com/triptechtravel/cloudflare-worker-rollbar#readme",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241218.0",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@cloudflare/workers-types": ">=4.0.0"
},
"peerDependenciesMeta": {
"@cloudflare/workers-types": {
"optional": true
}
}
}