-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgren.json
63 lines (63 loc) · 1.24 KB
/
gren.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"type": "package",
"platform": "common",
"name": "gren-lang/core",
"summary": "Gren's core modules",
"license": "BSD-3-Clause",
"version": "6.0.1",
"exposed-modules": {
"Primitives": [
"Basics",
"String",
"Char",
"Bitwise",
"Math"
],
"Bytes": [
"Bytes",
"Bytes.Encode",
"Bytes.Decode"
],
"Collections": [
"Array",
"Array.Builder",
"Dict",
"Set"
],
"Streams": [
"Stream"
],
"Error Handling": [
"Maybe",
"Result"
],
"Debug": [
"Debug"
],
"Effects": [
"Platform",
"Platform.Cmd",
"Platform.Sub",
"Process",
"Task"
],
"Json": [
"Json.Decode",
"Json.Encode"
],
"Random": [
"Random"
],
"Strings": [
"String.Regex"
],
"Time": [
"Time"
],
"Crypto": [
"Crypto"
]
},
"gren-version": "0.5.0 <= v < 0.6.0",
"dependencies": {}
}