-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
39 lines (39 loc) · 872 Bytes
/
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
{
"author": "Niklas Mollenhauer <[email protected]>",
"name": "node-ts",
"description": "TeamSpeak® 3 Server Query client for node.js implemented using TypeScript",
"version": "8.0.1",
"repository": {
"type": "git",
"url": "git://github.com/nikeee/node-ts.git"
},
"main": "lib/index.js",
"type": "module",
"types": "lib/index.d.ts",
"dependencies": {
"@rauschma/stringio": "^1.4.0",
"@types/node": "^22.13.9"
},
"devDependencies": {
"rimraf": "^6.0.1",
"typescript": "^5.8.2"
},
"scripts": {
"test": "tsc --noEmit",
"clean": "rimraf lib",
"compile": "tsc",
"prepare": "npm run clean && npm run compile"
},
"keywords": [
"teamspeak",
"serverquery",
"ts3",
"ts",
"typescript"
],
"optionalDependencies": {},
"engines": {
"node": ">=22.0.0"
},
"license": "LGPL-3.0"
}