-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
47 lines (47 loc) · 1007 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
40
41
42
43
44
45
46
47
{
"name": "tglib",
"version": "3.0.5",
"author": "nodegin",
"license": "MIT",
"description": "TDLib (Telegram Database library) bindings for Node.js",
"homepage": "https://github.com/nodegin/tglib#readme",
"bugs": {
"url": "https://github.com/nodegin/tglib/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nodegin/tglib.git"
},
"keywords": [
"tdlib",
"telegram"
],
"main": "node.js",
"module": "wasm.js",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "node test/test.js",
"pretest": "npm run build",
"prepublish": "npm run build"
},
"dependencies": {
"crc": "^3.8.0",
"event-emitter": "^0.3.5",
"ffi-napi": "^2.4.5",
"fs-extra": "^7.0.1",
"inquirer": "^6.2.2",
"ref-napi": "^1.4.1"
},
"devDependencies": {
"rollup": "^1.0.0",
"rollup-plugin-json": "^4.0.0"
},
"files": [
"node.js",
"wasm.js"
],
"engines": {
"node": ">= 9.0.0"
}
}