-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.64 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.64 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
{
"name": "@logtape/syslog",
"version": "2.1.0",
"description": "Syslog sink for LogTape",
"keywords": [
"logging",
"log",
"logger",
"syslog",
"sink",
"rfc5424"
],
"license": "MIT",
"author": {
"name": "Hong Minhee",
"email": "hong@minhee.org",
"url": "https://hongminhee.org/"
},
"homepage": "https://logtape.org/",
"repository": {
"type": "git",
"url": "git+https://github.com/dahlia/logtape.git",
"directory": "packages/syslog/"
},
"bugs": {
"url": "https://github.com/dahlia/logtape/issues"
},
"funding": [
"https://github.com/sponsors/dahlia"
],
"type": "module",
"module": "./dist/mod.js",
"main": "./dist/mod.cjs",
"types": "./dist/mod.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/mod.d.ts",
"require": "./dist/mod.d.cts"
},
"import": "./dist/mod.js",
"require": "./dist/mod.cjs"
},
"./package.json": "./package.json"
},
"sideEffects": false,
"files": [
"dist/"
],
"peerDependencies": {
"@logtape/logtape": "workspace:^"
},
"devDependencies": {
"@alinea/suite": "catalog:",
"@david/which-runtime": "catalog:",
"@std/assert": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
},
"scripts": {
"build": "tsdown",
"prepack": "tsdown",
"prepublish": "tsdown",
"test": "tsdown && node --experimental-transform-types --test",
"test:bun": "tsdown && bun test",
"test:deno": "deno test --allow-net --allow-env=TEMP,TMP,TMPDIR,HOSTNAME",
"test-all": "tsdown && node --experimental-transform-types --test && bun test && deno test"
}
}