This repository has been archived by the owner on Sep 29, 2022. It is now read-only.
generated from holtwick/zerva-module-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
56
57
58
59
60
61
62
63
64
65
{
"name": "zerva-socketio",
"version": "0.2.21",
"description": "🌱 Zerva socket.io module",
"funding": {
"type": "GitHub Sponsors ❤",
"url": "https://github.com/sponsors/holtwick"
},
"keywords": [
"server",
"typescript",
"event"
],
"author": {
"name": "Dirk Holtwick",
"url": "https://holtwick.de"
},
"license": "MIT",
"type": "module",
"typings": "dist/index.d.ts",
"exports": {
".": {
"browser": "./dist/index.browser.js",
"require": "./dist/index.cjs",
"node": "./dist/index.js",
"default": "./dist/index.js"
}
},
"module": "dist/index.js",
"main": "dist/index.cjs",
"files": [
"dist"
],
"engines": {
"node": ">=14.13.1"
},
"scripts": {
"start": "npm run build",
"build": "npm run clean && npm run build:tsup",
"build:esm": "tsc -p tsconfig.json",
"build:tsup": "tsup src/index.ts src/index.browser.ts --dts --sourcemap --format esm,cjs",
"check": "tsc --noEmit -p tsconfig.json",
"clean": "rm -rf dist",
"prepublishOnly": "npm test && npm run build",
"test": "jest src"
},
"dependencies": {
"@types/ws": "^8.2.0",
"detect-browser": "^5.2.1",
"engine.io": "^6.0.0",
"socket.io": "^4.3.1",
"socket.io-client": "^4.3.2",
"zeed": "^0.7.55",
"zerva": "^0.4.53"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"jest": "^27.3.1",
"jest-ts-webcompat-resolver": "^1.0.0",
"ts-jest": "^27.0.7",
"tsup": "^5.5.0",
"typescript": "^4.4.4"
}
}