forked from maraisr/workers-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1023 Bytes
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1023 Bytes
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
{
"name": "workers-logger",
"version": "0.2.0",
"description": "A fast and effective logging framework for Cloudflare Workers",
"keywords": [
"logging",
"tracing",
"workers"
],
"repository": "maraisr/workers-logger",
"license": "MIT",
"author": {
"name": "Marais Rossouw",
"email": "me@marais.dev",
"url": "https://marais.io"
},
"sideEffects": false,
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./package.json": "./package.json"
},
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"files": [
"index.js",
"index.mjs",
"index.d.ts"
],
"scripts": {
"build": "bundt --minify",
"format": "prettier --write --list-different \"{*,{src,examples}/**/*,.github/**/*}.+(ts|json|yml|md)\"",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"diary": "^0.3.0"
},
"devDependencies": {
"@marais/tsconfig": "0.0.3",
"bundt": "2.0.0-next.5",
"prettier": "2.6.2",
"typescript": "4.6.4"
},
"volta": {
"node": "18.12.0"
}
}