-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.73 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.73 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
{
"name": "@js-cloud/photon",
"version": "1.0.0",
"description": "A lightweight library for fast web socket communication",
"type": "module",
"module": "./wrapper.mjs",
"main": "./dist/esm/index.js",
"types": "./dist/esm/index.d.ts",
"exports": {
".": {
"node": {
"import": "./wrapper.mjs",
"require": "./dist/cjs/index.js",
"module": "./wrapper.mjs"
},
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"wrapper.mjs"
],
"publishConfig": {
"access": "public",
"registry": "https://npm.pkg.github.com/@jerry_s_joseph"
},
"scripts": {
"test": "jest --coverage",
"dev": "ts-node-dev --respawn --pretty --transpile-only index.ts",
"server": "ts-node-dev --respawn --pretty --transpile-only sample/server/index.ts",
"client": "ts-node-dev --respawn --pretty --transpile-only sample/client/index.ts",
"clean": "rm -rf ./js/",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"prepublishOnly": "npm run test && npm run build",
"prepare": "npm run build"
},
"keywords": [
"websockets",
"connect",
"cloud-link",
"socket"
],
"repository": {
"type": "git",
"url": "https://github.com/JerrySJoseph/js-cloud-link/"
},
"author": "Jerry S Joseph",
"license": "ISC",
"dependencies": {
"uuid": "^8.3.2",
"ws": "^8.2.3"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/uuid": "^8.3.1",
"@types/ws": "^8.2.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
}
}