-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.1 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
{
"name": "tokio",
"version": "1.0.0",
"description": "C++ library for high performance discord audio trhoughput",
"main": "index.js",
"scripts": {
"start": "node index.js",
"compile": "cd bindings && tsc && cd .. && cmake-js compile",
"compile-only": "cmake-js compile",
"format": "which astyle && astyle -n --style=google --indent=spaces=2 --recursive \"lib/*.cc,*.h,*.c,*.cpp\""
},
"keywords": [
"discord",
"c++",
"fast"
],
"author": "Liz3",
"license": "GPL-2.0-only",
"repository": {
"type": "git",
"url": "https://gitlab.com/HCInk/tokio.git"
},
"os": [
"darwin",
"linux",
"win32"
],
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"homepage": "https://gitlab.com/HCInk/tokio/-/blob/master/README.md",
"devDependencies": {
"@types/node": "^13.13.5",
"cmake-js": "^6.1.0",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"tsc": "^1.20150623.0",
"typescript": "^3.8.3"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^2.0.0"
}
}