-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@perryts/dgram",
"version": "0.1.6",
"description": "UDP datagram socket bindings (Node `dgram` module) for the Perry TypeScript-to-native compiler.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/PerryTS/dgram.git"
},
"homepage": "https://github.com/PerryTS/dgram#readme",
"bugs": {
"url": "https://github.com/PerryTS/perry/issues"
},
"keywords": [
"perry",
"perryts",
"dgram",
"udp",
"networking"
],
"types": "src/index.d.ts",
"files": [
"src/",
"Cargo.toml",
"README.md"
],
"publishConfig": {
"access": "public"
},
"perry": {
"nativeLibrary": {
"abiVersion": "0.5",
"functions": [
{
"name": "js_dgram_create_socket",
"params": ["string"],
"returns": "i64"
},
{
"name": "js_dgram_bind",
"params": ["i64", "f64", "string"],
"returns": "promise"
},
{
"name": "js_dgram_send",
"params": ["i64", "string", "f64", "string"],
"returns": "promise"
},
{
"name": "js_dgram_send_buffer",
"params": ["i64", "ptr", "f64", "string"],
"returns": "promise"
},
{
"name": "js_dgram_recv",
"params": ["i64", "f64"],
"returns": "promise"
},
{
"name": "js_dgram_close",
"params": ["i64"],
"returns": "promise"
},
{
"name": "js_dgram_address",
"params": ["i64"],
"returns": "f64"
},
{
"name": "js_dgram_set_broadcast",
"params": ["i64", "f64"],
"returns": "i64"
},
{
"name": "js_dgram_add_membership",
"params": ["i64", "string", "string"],
"returns": "i64"
},
{
"name": "js_dgram_drop_membership",
"params": ["i64", "string", "string"],
"returns": "i64"
}
],
"targets": {
"macos": {
"cargo_features": [],
"frameworks": []
},
"linux": {
"cargo_features": []
},
"windows": {
"cargo_features": []
}
}
}
}
}