-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.15 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.15 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "soxtend",
"version": "2.0.0",
"description": "Websockets on steroid",
"exports": {
"./server": {
"types": "./dist/types/index.d.ts",
"import": "./dist/esm/index.js",
"default": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./router": {
"types": "./dist/types/wrappers/router.d.ts",
"import": "./dist/esm/wrappers/router.js",
"default": "./dist/esm/wrappers/router.js",
"require": "./dist/cjs/wrappers/router.js"
},
"./redisDistributor": {
"types": "./dist/types/distributor/redis.d.ts",
"import": "./dist/esm/distributor/redis.js",
"default": "./dist/esm/distributor/redis.js",
"require": "./dist/cjs/distributor/redis.js"
},
"./inMemoryDistributor": {
"types": "./dist/types/distributor/inMemory.d.ts",
"import": "./dist/esm/distributor/inMemory.js",
"default": "./dist/esm/distributor/inMemory.js",
"require": "./dist/cjs/distributor/inMemory.js"
},
"./client": {
"types": "./dist/types/client/index.d.ts",
"import": "./dist/esm/client/index.js",
"default": "./dist/esm/client/index.js",
"require": "./dist/cjs/client/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugwheels94/soxtend.git"
},
"bugs": {
"url": "https://github.com/bugwheels94/soxtend/issues"
},
"homepage": "https://github.com/bugwheels94/soxtend#readme",
"scripts": {
"test": "jest",
"build:watch": "run-p build:code:watch build:types:watch",
"build:types": "tsc --project ./tsconfig.json",
"build:types:watch": "tsc --watch --project ./tsconfig.json",
"build:code": "rollup -c",
"build:code:watch": "rollup -c -w",
"build": "run-p build:types build:code"
},
"author": "bugwheels94",
"license": "ISC",
"peerDependencies": {
"redis": "^4.6.5"
},
"devDependencies": {
"@babel/core": "^7.21.8",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-typescript": "^7.21.5",
"@jest/globals": "^29.6.4",
"@playwright/test": "^1.37.1",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.1",
"@semantic-release/github": "^8.0.4",
"@semantic-release/npm": "^9.0.1",
"@types/ws": "^8.5.10",
"babel": "^6.23.0",
"babel-plugin-const-enum": "^1.2.0",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"false": "^0.0.4",
"fast-glob": "^3.2.12",
"jest": "^29.6.4",
"lint-staged": "^12.3.7",
"npm-run-all": "^4.1.5",
"prettier": "2.6.0",
"replace": "^1.2.1",
"rollup": "^3.21.5",
"rollup-plugin-peer-deps-external": "^2.2.4",
"semantic-release": "^19.0.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.4.3"
},
"prettier": {
"singleQuote": true,
"printWidth": 120,
"useTabs": true
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@babel/runtime": "^7.21.5",
"isomorphic-ws": "^4.0.1",
"path-to-regexp": "^6.2.1",
"ws": "^8.5.0",
"nanoid": "^5.0.7"
}
}