-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.17 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.17 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
86
87
88
89
90
91
92
93
94
{
"name": "@boringnode/transmit",
"description": "A framework agnostic Server-Sent-Event library",
"version": "0.4.0",
"engines": {
"node": ">=20.6"
},
"main": "build/index.js",
"type": "module",
"files": [
"build"
],
"exports": {
".": "./build/index.js",
"./transports": "./build/transports.js",
"./types": "./build/src/types/main.js"
},
"scripts": {
"build": "yarn compile",
"clean": "del-cli build",
"compile": "yarn clean && tsc",
"format": "prettier --write .",
"lint": "eslint .",
"precompile": "yarn lint",
"prepublishOnly": "yarn build",
"pretest": "yarn lint",
"quick:test": "yarn node --enable-source-maps --import=ts-node-maintained/register/esm bin/test.ts",
"release": "release-it",
"test": "c8 yarn quick:test",
"typecheck": "tsc --noEmit",
"version": "yarn build"
},
"dependencies": {
"@boringnode/bus": "^0.9.0",
"@poppinss/utils": "^6.10.1",
"emittery": "^1.2.1",
"matchit": "^1.1.0"
},
"devDependencies": {
"@adonisjs/eslint-config": "^2.1.2",
"@adonisjs/prettier-config": "^1.4.5",
"@adonisjs/tsconfig": "^1.4.1",
"@japa/assert": "^4.2.0",
"@japa/runner": "^5.3.0",
"@swc/core": "^1.15.24",
"@types/node": "^20.16.10",
"c8": "^10.1.3",
"del-cli": "^7.0.0",
"eslint": "^9.39.4",
"prettier": "^3.8.2",
"release-it": "^19.2.4",
"ts-node-maintained": "^10.9.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"author": "Romain Lanz <romain.lanz@pm.me>",
"license": "MIT",
"keywords": [
"sse",
"server-sent-event",
"realtime",
"real-time"
],
"prettier": "@adonisjs/prettier-config",
"publishConfig": {
"access": "public",
"tag": "latest"
},
"release-it": {
"git": {
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"tagName": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}",
"web": true
}
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"volta": {
"node": "20.11.1"
},
"packageManager": "yarn@4.13.0"
}