-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
{
"name": "cs2-gamestate-integration-listener",
"version": "1.0.1",
"description": "CS2 Gamestate Integration Listener",
"main": "dist/listenserver.js",
"types": "dist/listenserver.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/listenserver.d.ts",
"import": "./dist/listenserver.js",
"default": "./dist/listenserver.js"
},
"./*": {
"types": "./dist/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"type": "commonjs",
"scripts": {
"build:auto": "tsc -w",
"run": "node --inspect dist/demo.js",
"test": "node --inspect dist/test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/853Lab/CS2-Gamestate-Integration-Listener.git"
},
"keywords": [],
"author": "Sonic853",
"license": "MIT",
"bugs": {
"url": "https://github.com/853Lab/CS2-Gamestate-Integration-Listener/issues"
},
"homepage": "https://github.com/853Lab/CS2-Gamestate-Integration-Listener#readme",
"devDependencies": {
"@types/node": "^20.12.12",
"@types/ws": "^8.5.10",
"typescript": "^5.4.5"
},
"dependencies": {
"cs2-gamestate-integration-data": "github:Sonic853/CS2-Gamestate-Integration-Data"
}
}