-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
65 lines (65 loc) · 1.67 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": "@worldql/client",
"version": "0.1.1",
"description": "TypeScript Client for interacting with WorldQL over WebSockets",
"packageManager": "yarn@3.1.1",
"type": "module",
"exports": {
".": {
"import": "./lib/index.js",
"types": "./lib/index.d.ts",
"require": "./cjs/index.js"
}
},
"main": "./cjs/index.js",
"module": "./lib/index.js",
"types": "./lib/index.d.ts",
"sideEffects": false,
"files": [
"lib/**/*",
"cjs/**/*"
],
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"keywords": [
"worldql",
"typescript",
"client",
"websockets",
"message broker",
"spatial database"
],
"scripts": {
"prepack": "yarn run build",
"prepublish": "yarn run test",
"test": "yarn run check && yarn run lint",
"check": "yarn run compile:esm --noEmit",
"lint": "xo ./src",
"clean:esm": "rimraf lib",
"clean:cjs": "rimraf cjs",
"clean": "yarn run clean:esm && yarn run clean:cjs",
"compile:esm": "tsc",
"compile:cjs": "tsc --outDir cjs --module commonjs",
"build:esm": "yarn run clean:esm && yarn run compile:esm",
"build:cjs": "yarn run clean:cjs && yarn run compile:cjs",
"build": "yarn run build:esm && yarn run build:cjs",
"dev": "yarn run clean:esm && yarn run compile:esm --watch"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^16.11.11",
"@types/uuid": "^8.3.3",
"@types/ws": "^8.2.1",
"rimraf": "^3.0.2",
"type-fest": "^2.8.0",
"typescript": "^4.5.2",
"xo": "^0.47.0"
},
"dependencies": {
"eventemitter3": "^4.0.7",
"flatbuffers": "^2.0.4",
"isomorphic-ws": "^4.0.1",
"ws": "^8.3.0"
}
}