-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.45 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "node-murmur",
"version": "0.1.5",
"description": "A Node.js implementation of a Mumble-compatible voice server",
"keywords": [
"mumble",
"voice-server",
"voip",
"murmur",
"node-murmur",
"audio"
],
"type": "module",
"main": "src/app.js",
"bin": {
"node-murmur": "./bin/node-murmur.js"
},
"files": [
"bin",
"src"
],
"author": "jstarstech",
"license": "MIT",
"homepage": "https://github.com/jstarstech/node-murmur",
"repository": {
"type": "git",
"url": "https://github.com/jstarstech/node-murmur.git"
},
"bugs": {
"url": "https://github.com/jstarstech/node-murmur/issues"
},
"engines": {
"node": ">= 24"
},
"scripts": {
"start": "node src/app.js",
"dev": "nodemon --config nodemon.json src/app.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "node --test test/*.test.js"
},
"dependencies": {
"ini": "^7.0.0",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"protobufjs": "^8.6.0",
"sequelize": "^6.37.8",
"sqlite3": "^6.0.1",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"nodemon": "^3.1.14",
"prettier": "3.8.3"
},
"overrides": {
"sequelize": {
"uuid": "11.1.1"
}
},
"allowScripts": {
"protobufjs@8.6.0": true,
"sqlite3@6.0.1": true
}
}