-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.34 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.34 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
{
"author": "Roberto Pintos López",
"bugs": {
"url": "https://github.com/inversify/framework-examples/issues"
},
"description": "InversifyJs live chat code example",
"dependencies": {
"@hono/node-server": "^1.19.11",
"@inversifyjs/http-core": "^5.0.1",
"@inversifyjs/http-hono": "^4.10.2",
"@inversifyjs/http-sse": "^1.1.7",
"hono": "^4.12.8",
"inversify": "^7.11.0"
},
"devDependencies": {
"@types/node": "24.12.0",
"eslint": "9.39.4",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"homepage": "https://inversify.io",
"keywords": [
"inversify",
"framework",
"example",
"live-chat"
],
"devEngines": {
"node": "^24.10.0",
"pnpm": "^10.13.1"
},
"license": "MIT",
"module": "lib/esm/index.js",
"exports": {
".": "./lib/esm/index.js"
},
"name": "@inversifyjs/example-live-chat",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/inversify/framework-examples.git"
},
"type": "module",
"scripts": {
"build": "pnpm run build:esm",
"build:esm": "tsc --build tsconfig.esm.json",
"build:clean": "rimraf lib",
"format": "prettier --write ./src",
"lint": "eslint ./src",
"prebuild": "pnpm run build:clean"
},
"version": "0.1.0"
}