-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.57 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
{
"name": "playerioclient",
"version": "1.0.4",
"description": "A wrapper that sends requests and connects to PlayerIO via HTTP and WS respectively.",
"homepage": "https://github.com/doomestee/PlayerIOClient.js",
"repository": {
"type": "git",
"url": "git+https://github.com/doomestee/PlayerIOClient.js.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "node ./test/index.js",
"build": "rimraf dist && tsc -p tsconfig.json",
"browsify": "rimraf browser && npm-run-all -p browsify-*",
"browsify-prod": "NODE_ENV=production webpack --mode=production",
"browsify-dev": "NODE_ENV=development webpack --mode=development",
"prepare": "tsc -p tsconfig.json && npm run browsify"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./esm.mjs",
"bun": "./dist/index.js"
},
"./package.json": "./package.json"
},
"keywords": [
"PlayerIO",
"JavaScript",
"TypeScript"
],
"author": "Doomester",
"license": "MIT",
"dependencies": {
"iconv-lite": "^0.6.3",
"isomorphic-ws": "^5.0.0",
"tslib": "^2.6.2",
"ws": "^8.13.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/ws": "^8.5.10",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"dotenv": "^16.3.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"stream-browserify": "^3.0.0",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"process": "^0.11.10"
}
}