-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
113 lines (113 loc) · 2.95 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
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
{
"name": "ps2census",
"version": "4.7.2",
"description": "Client to connect to the PS2 Event Stream websocket.",
"author": "Microwavekonijn",
"license": "Apache-2.0",
"homepage": "https://github.com/microwavekonijn/ps2census#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/microwavekonijn/ps2census.git"
},
"bugs": {
"url": "https://github.com/microwavekonijn/ps2census/issues"
},
"keywords": [
"planetside",
"ps2",
"census",
"websocket",
"client",
"gaming"
],
"engines": {
"node": ">=14.0.0"
},
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"module": "./dist/es/index.js",
"sideEffects": false,
"files": [
"dist/",
"package.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/es/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
},
"./stream": {
"types": "./dist/types/stream/index.d.ts",
"import": "./dist/es/stream/index.js",
"require": "./dist/cjs/stream/index.js",
"default": "./dist/cjs/stream/index.js"
},
"./rest": {
"types": "./dist/types/rest/index.d.ts",
"import": "./dist/es/rest/index.js",
"require": "./dist/cjs/rest/index.js",
"default": "./dist/cjs/rest/index.js"
}
},
"scripts": {
"clean": "rimraf dist",
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:es": "tsc -p tsconfig.es.json",
"build:types": "tsc -p tsconfig.types.json",
"test": "ts-node ./test/test.ts",
"format": "prettier --write",
"lint": "eslint src",
"prepublishOnly": "npm run build",
"postversion": "git push && git push --tags",
"prepare": "husky install"
},
"dependencies": {
"axios": "1.7.2",
"eventemitter3": "5.0.1",
"isomorphic-ws": "5.0.0",
"ws": "8.17.0"
},
"peerDependencies": {
"bufferutil": "^4.0.7",
"utf-8-validate": ">=5.0.10"
},
"peerDependenciesMeta": {
"bufferutil": {
"optional": true
},
"utf-8-validate": {
"optional": true
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.5",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-angular": "^19.3.0",
"@tsconfig/node14": "^14.1.2",
"@types/node": "^20.14.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"concurrently": "^8.2.0",
"dotenv": "^16.4.5",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"ts-node": "^10.9.1",
"typescript": "^5.4.5"
},
"lint-staged": {
"{src,test}/**/*.{ts,json}": [
"prettier --ignore-path ./.prettierignore --write"
]
}
}