-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.32 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
{
"name": "@onehop/leap-edge-js",
"description": "JavaScript client for Leap Edge, by Hop.io",
"version": "1.0.11",
"type": "module",
"main": "./dist/node/index.cjs",
"types": "./dist/node/index.d.ts",
"module": "./dist/node/index.js",
"exports": {
".": {
"node": {
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs",
"types": "./dist/node/index.d.ts"
},
"browser": {
"import": "./dist/browser/index.js",
"require": "./dist/browser/index.cjs",
"types": "./dist/browser/index.d.ts"
},
"import": "./dist/node/index.js",
"require": "./dist/node/index.cjs",
"types": "./dist/node/index.d.ts"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist && tsup",
"release": "yarn build && yarn npm publish"
},
"files": [
"dist",
"package.json",
"README.md",
"LICENSE"
],
"author": "Phineas Walton <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.0",
"@types/prettier": "^2",
"@types/ws": "^8.5.3",
"prettier": "^2.7.1",
"ts-node": "^10.8.2",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@types/lodash.throttle": "^4.1.7",
"eventemitter3": "^4.0.7",
"lodash.throttle": "^4.1.1",
"ws": "^8.8.0"
},
"packageManager": "[email protected]"
}