-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
55 lines (55 loc) · 1.31 KB
/
package.json
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
{
"name": "@fastify/hotwire",
"version": "3.0.1",
"description": "Use the Hotwire pattern with Fastify",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"demo": "node example/app.js",
"lint": "standard",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-hotwire.git"
},
"keywords": [
"fastify",
"hotwire",
"turbo",
"html",
"websocket"
],
"author": "Tomas Della Vedova",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-hotwire/issues"
},
"homepage": "https://github.com/fastify/fastify-hotwire#readme",
"dependencies": {
"fastify-plugin": "^5.0.0",
"piscina": "^4.0.0"
},
"devDependencies": {
"@fastify/cookie": "^11.0.1",
"@fastify/formbody": "^8.0.0",
"@fastify/websocket": "^11.0.1",
"@hotwired/turbo": "^8.0.10",
"@types/node": "^22.5.5",
"fastify": "^5.0.0",
"mqemitter": "^6.0.2",
"pino-pretty": "^13.0.0",
"shortid": "^2.2.16",
"standard": "^17.0.0",
"superheroes": "^4.0.0",
"svelte": "^3.44.0",
"tap": "^16.0.0",
"tsd": "^0.31.2"
},
"publishConfig": {
"access": "public"
}
}