functionalscript 0.1.601 → 0.1.602
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dev/module.mjs +1 -1
- package/jsr.json +116 -116
- package/package.json +1 -1
package/dev/module.mjs
CHANGED
|
@@ -182,7 +182,7 @@ export const index = async () => {
|
|
|
182
182
|
{
|
|
183
183
|
const jj = './jsr.json'
|
|
184
184
|
const jsr_json = JSON.parse(await readFile(jj, { encoding: 'utf8' }))
|
|
185
|
-
const exports = Object.keys(await loadModuleMap())
|
|
185
|
+
const exports = Object.fromEntries(Object.keys(await loadModuleMap()).map(v => [v.replace('.f.mjs', ''), v]))
|
|
186
186
|
await writeFile(
|
|
187
187
|
jj,
|
|
188
188
|
JSON.stringify({ ...jsr_json, exports }, null, 2))
|
package/jsr.json
CHANGED
|
@@ -1,119 +1,119 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@functionalscript/functionalscript",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"exports":
|
|
5
|
-
"./com/cpp/module.f.mjs",
|
|
6
|
-
"./com/cpp/test.f.mjs",
|
|
7
|
-
"./com/cpp/testlib.f.mjs",
|
|
8
|
-
"./com/cs/module.f.mjs",
|
|
9
|
-
"./com/cs/test.f.mjs",
|
|
10
|
-
"./com/cs/testlib.f.mjs",
|
|
11
|
-
"./com/rust/module.f.mjs",
|
|
12
|
-
"./com/rust/test.f.mjs",
|
|
13
|
-
"./com/rust/testlib.f.mjs",
|
|
14
|
-
"./com/test/build.f.mjs",
|
|
15
|
-
"./com/types/module.f.mjs",
|
|
16
|
-
"./com/types/testlib.f.mjs",
|
|
17
|
-
"./commonjs/build/module.f.mjs",
|
|
18
|
-
"./commonjs/build/test.f.mjs",
|
|
19
|
-
"./commonjs/module.f.mjs",
|
|
20
|
-
"./commonjs/module/function/module.f.mjs",
|
|
21
|
-
"./commonjs/module/module.f.mjs",
|
|
22
|
-
"./commonjs/package/dependencies/module.f.mjs",
|
|
23
|
-
"./commonjs/package/dependencies/test.f.mjs",
|
|
24
|
-
"./commonjs/package/module.f.mjs",
|
|
25
|
-
"./commonjs/package/test.f.mjs",
|
|
26
|
-
"./commonjs/path/module.f.mjs",
|
|
27
|
-
"./commonjs/path/test.f.mjs",
|
|
28
|
-
"./dev/module.f.mjs",
|
|
29
|
-
"./dev/test.f.mjs",
|
|
30
|
-
"./dev/test/module.f.mjs",
|
|
31
|
-
"./djs/module.f.mjs",
|
|
32
|
-
"./djs/parser/module.f.mjs",
|
|
33
|
-
"./djs/parser/test.f.mjs",
|
|
34
|
-
"./djs/test.f.mjs",
|
|
35
|
-
"./djs/tokenizer/module.f.mjs",
|
|
36
|
-
"./djs/tokenizer/test.f.mjs",
|
|
37
|
-
"./fsc/module.f.mjs",
|
|
38
|
-
"./fsc/test.f.mjs",
|
|
39
|
-
"./fsm/module.f.mjs",
|
|
40
|
-
"./fsm/test.f.mjs",
|
|
41
|
-
"./html/module.f.mjs",
|
|
42
|
-
"./html/test.f.mjs",
|
|
43
|
-
"./index.f.mjs",
|
|
44
|
-
"./js/tokenizer/module.f.mjs",
|
|
45
|
-
"./js/tokenizer/test.f.mjs",
|
|
46
|
-
"./json/module.f.mjs",
|
|
47
|
-
"./json/parser/module.f.mjs",
|
|
48
|
-
"./json/parser/test.f.mjs",
|
|
49
|
-
"./json/serializer/module.f.mjs",
|
|
50
|
-
"./json/serializer/test.f.mjs",
|
|
51
|
-
"./json/test.f.mjs",
|
|
52
|
-
"./json/tokenizer/module.f.mjs",
|
|
53
|
-
"./json/tokenizer/test.f.mjs",
|
|
54
|
-
"./nodejs/version/module.f.mjs",
|
|
55
|
-
"./nodejs/version/test.f.mjs",
|
|
56
|
-
"./prime_field/module.f.mjs",
|
|
57
|
-
"./prime_field/test.f.mjs",
|
|
58
|
-
"./secp/module.f.mjs",
|
|
59
|
-
"./secp/test.f.mjs",
|
|
60
|
-
"./sha2/module.f.mjs",
|
|
61
|
-
"./sha2/test.f.mjs",
|
|
62
|
-
"./text/ascii/module.f.mjs",
|
|
63
|
-
"./text/ascii/test.f.mjs",
|
|
64
|
-
"./text/module.f.mjs",
|
|
65
|
-
"./text/sgr/module.f.mjs",
|
|
66
|
-
"./text/test.f.mjs",
|
|
67
|
-
"./text/utf16/module.f.mjs",
|
|
68
|
-
"./text/utf16/test.f.mjs",
|
|
69
|
-
"./text/utf8/module.f.mjs",
|
|
70
|
-
"./text/utf8/test.f.mjs",
|
|
71
|
-
"./types/array/module.f.mjs",
|
|
72
|
-
"./types/array/test.f.mjs",
|
|
73
|
-
"./types/bigfloat/module.f.mjs",
|
|
74
|
-
"./types/bigfloat/test.f.mjs",
|
|
75
|
-
"./types/bigint/module.f.mjs",
|
|
76
|
-
"./types/bigint/test.f.mjs",
|
|
77
|
-
"./types/btree/find/module.f.mjs",
|
|
78
|
-
"./types/btree/find/test.f.mjs",
|
|
79
|
-
"./types/btree/module.f.mjs",
|
|
80
|
-
"./types/btree/remove/module.f.mjs",
|
|
81
|
-
"./types/btree/remove/test.f.mjs",
|
|
82
|
-
"./types/btree/set/module.f.mjs",
|
|
83
|
-
"./types/btree/set/test.f.mjs",
|
|
84
|
-
"./types/btree/test.f.mjs",
|
|
85
|
-
"./types/btree/types/module.f.mjs",
|
|
86
|
-
"./types/byte_set/module.f.mjs",
|
|
87
|
-
"./types/byte_set/test.f.mjs",
|
|
88
|
-
"./types/function/compare/module.f.mjs",
|
|
89
|
-
"./types/function/compare/test.f.mjs",
|
|
90
|
-
"./types/function/module.f.mjs",
|
|
91
|
-
"./types/function/operator/module.f.mjs",
|
|
92
|
-
"./types/function/test.f.mjs",
|
|
93
|
-
"./types/list/module.f.mjs",
|
|
94
|
-
"./types/list/test.f.mjs",
|
|
95
|
-
"./types/map/module.f.mjs",
|
|
96
|
-
"./types/map/test.f.mjs",
|
|
97
|
-
"./types/nibble_set/module.f.mjs",
|
|
98
|
-
"./types/nibble_set/test.f.mjs",
|
|
99
|
-
"./types/nullable/module.f.mjs",
|
|
100
|
-
"./types/nullable/test.f.mjs",
|
|
101
|
-
"./types/number/module.f.mjs",
|
|
102
|
-
"./types/number/test.f.mjs",
|
|
103
|
-
"./types/object/module.f.mjs",
|
|
104
|
-
"./types/object/test.f.mjs",
|
|
105
|
-
"./types/range/module.f.mjs",
|
|
106
|
-
"./types/range/test.f.mjs",
|
|
107
|
-
"./types/range_map/module.f.mjs",
|
|
108
|
-
"./types/range_map/test.f.mjs",
|
|
109
|
-
"./types/result/module.f.mjs",
|
|
110
|
-
"./types/sorted_list/module.f.mjs",
|
|
111
|
-
"./types/sorted_list/test.f.mjs",
|
|
112
|
-
"./types/sorted_set/module.f.mjs",
|
|
113
|
-
"./types/sorted_set/test.f.mjs",
|
|
114
|
-
"./types/string/module.f.mjs",
|
|
115
|
-
"./types/string/test.f.mjs",
|
|
116
|
-
"./types/string_set/module.f.mjs",
|
|
117
|
-
"./types/string_set/test.f.mjs"
|
|
118
|
-
|
|
3
|
+
"version": "0.1.602",
|
|
4
|
+
"exports": {
|
|
5
|
+
"./com/cpp/module": "./com/cpp/module.f.mjs",
|
|
6
|
+
"./com/cpp/test": "./com/cpp/test.f.mjs",
|
|
7
|
+
"./com/cpp/testlib": "./com/cpp/testlib.f.mjs",
|
|
8
|
+
"./com/cs/module": "./com/cs/module.f.mjs",
|
|
9
|
+
"./com/cs/test": "./com/cs/test.f.mjs",
|
|
10
|
+
"./com/cs/testlib": "./com/cs/testlib.f.mjs",
|
|
11
|
+
"./com/rust/module": "./com/rust/module.f.mjs",
|
|
12
|
+
"./com/rust/test": "./com/rust/test.f.mjs",
|
|
13
|
+
"./com/rust/testlib": "./com/rust/testlib.f.mjs",
|
|
14
|
+
"./com/test/build": "./com/test/build.f.mjs",
|
|
15
|
+
"./com/types/module": "./com/types/module.f.mjs",
|
|
16
|
+
"./com/types/testlib": "./com/types/testlib.f.mjs",
|
|
17
|
+
"./commonjs/build/module": "./commonjs/build/module.f.mjs",
|
|
18
|
+
"./commonjs/build/test": "./commonjs/build/test.f.mjs",
|
|
19
|
+
"./commonjs/module": "./commonjs/module.f.mjs",
|
|
20
|
+
"./commonjs/module/function/module": "./commonjs/module/function/module.f.mjs",
|
|
21
|
+
"./commonjs/module/module": "./commonjs/module/module.f.mjs",
|
|
22
|
+
"./commonjs/package/dependencies/module": "./commonjs/package/dependencies/module.f.mjs",
|
|
23
|
+
"./commonjs/package/dependencies/test": "./commonjs/package/dependencies/test.f.mjs",
|
|
24
|
+
"./commonjs/package/module": "./commonjs/package/module.f.mjs",
|
|
25
|
+
"./commonjs/package/test": "./commonjs/package/test.f.mjs",
|
|
26
|
+
"./commonjs/path/module": "./commonjs/path/module.f.mjs",
|
|
27
|
+
"./commonjs/path/test": "./commonjs/path/test.f.mjs",
|
|
28
|
+
"./dev/module": "./dev/module.f.mjs",
|
|
29
|
+
"./dev/test": "./dev/test.f.mjs",
|
|
30
|
+
"./dev/test/module": "./dev/test/module.f.mjs",
|
|
31
|
+
"./djs/module": "./djs/module.f.mjs",
|
|
32
|
+
"./djs/parser/module": "./djs/parser/module.f.mjs",
|
|
33
|
+
"./djs/parser/test": "./djs/parser/test.f.mjs",
|
|
34
|
+
"./djs/test": "./djs/test.f.mjs",
|
|
35
|
+
"./djs/tokenizer/module": "./djs/tokenizer/module.f.mjs",
|
|
36
|
+
"./djs/tokenizer/test": "./djs/tokenizer/test.f.mjs",
|
|
37
|
+
"./fsc/module": "./fsc/module.f.mjs",
|
|
38
|
+
"./fsc/test": "./fsc/test.f.mjs",
|
|
39
|
+
"./fsm/module": "./fsm/module.f.mjs",
|
|
40
|
+
"./fsm/test": "./fsm/test.f.mjs",
|
|
41
|
+
"./html/module": "./html/module.f.mjs",
|
|
42
|
+
"./html/test": "./html/test.f.mjs",
|
|
43
|
+
"./index": "./index.f.mjs",
|
|
44
|
+
"./js/tokenizer/module": "./js/tokenizer/module.f.mjs",
|
|
45
|
+
"./js/tokenizer/test": "./js/tokenizer/test.f.mjs",
|
|
46
|
+
"./json/module": "./json/module.f.mjs",
|
|
47
|
+
"./json/parser/module": "./json/parser/module.f.mjs",
|
|
48
|
+
"./json/parser/test": "./json/parser/test.f.mjs",
|
|
49
|
+
"./json/serializer/module": "./json/serializer/module.f.mjs",
|
|
50
|
+
"./json/serializer/test": "./json/serializer/test.f.mjs",
|
|
51
|
+
"./json/test": "./json/test.f.mjs",
|
|
52
|
+
"./json/tokenizer/module": "./json/tokenizer/module.f.mjs",
|
|
53
|
+
"./json/tokenizer/test": "./json/tokenizer/test.f.mjs",
|
|
54
|
+
"./nodejs/version/module": "./nodejs/version/module.f.mjs",
|
|
55
|
+
"./nodejs/version/test": "./nodejs/version/test.f.mjs",
|
|
56
|
+
"./prime_field/module": "./prime_field/module.f.mjs",
|
|
57
|
+
"./prime_field/test": "./prime_field/test.f.mjs",
|
|
58
|
+
"./secp/module": "./secp/module.f.mjs",
|
|
59
|
+
"./secp/test": "./secp/test.f.mjs",
|
|
60
|
+
"./sha2/module": "./sha2/module.f.mjs",
|
|
61
|
+
"./sha2/test": "./sha2/test.f.mjs",
|
|
62
|
+
"./text/ascii/module": "./text/ascii/module.f.mjs",
|
|
63
|
+
"./text/ascii/test": "./text/ascii/test.f.mjs",
|
|
64
|
+
"./text/module": "./text/module.f.mjs",
|
|
65
|
+
"./text/sgr/module": "./text/sgr/module.f.mjs",
|
|
66
|
+
"./text/test": "./text/test.f.mjs",
|
|
67
|
+
"./text/utf16/module": "./text/utf16/module.f.mjs",
|
|
68
|
+
"./text/utf16/test": "./text/utf16/test.f.mjs",
|
|
69
|
+
"./text/utf8/module": "./text/utf8/module.f.mjs",
|
|
70
|
+
"./text/utf8/test": "./text/utf8/test.f.mjs",
|
|
71
|
+
"./types/array/module": "./types/array/module.f.mjs",
|
|
72
|
+
"./types/array/test": "./types/array/test.f.mjs",
|
|
73
|
+
"./types/bigfloat/module": "./types/bigfloat/module.f.mjs",
|
|
74
|
+
"./types/bigfloat/test": "./types/bigfloat/test.f.mjs",
|
|
75
|
+
"./types/bigint/module": "./types/bigint/module.f.mjs",
|
|
76
|
+
"./types/bigint/test": "./types/bigint/test.f.mjs",
|
|
77
|
+
"./types/btree/find/module": "./types/btree/find/module.f.mjs",
|
|
78
|
+
"./types/btree/find/test": "./types/btree/find/test.f.mjs",
|
|
79
|
+
"./types/btree/module": "./types/btree/module.f.mjs",
|
|
80
|
+
"./types/btree/remove/module": "./types/btree/remove/module.f.mjs",
|
|
81
|
+
"./types/btree/remove/test": "./types/btree/remove/test.f.mjs",
|
|
82
|
+
"./types/btree/set/module": "./types/btree/set/module.f.mjs",
|
|
83
|
+
"./types/btree/set/test": "./types/btree/set/test.f.mjs",
|
|
84
|
+
"./types/btree/test": "./types/btree/test.f.mjs",
|
|
85
|
+
"./types/btree/types/module": "./types/btree/types/module.f.mjs",
|
|
86
|
+
"./types/byte_set/module": "./types/byte_set/module.f.mjs",
|
|
87
|
+
"./types/byte_set/test": "./types/byte_set/test.f.mjs",
|
|
88
|
+
"./types/function/compare/module": "./types/function/compare/module.f.mjs",
|
|
89
|
+
"./types/function/compare/test": "./types/function/compare/test.f.mjs",
|
|
90
|
+
"./types/function/module": "./types/function/module.f.mjs",
|
|
91
|
+
"./types/function/operator/module": "./types/function/operator/module.f.mjs",
|
|
92
|
+
"./types/function/test": "./types/function/test.f.mjs",
|
|
93
|
+
"./types/list/module": "./types/list/module.f.mjs",
|
|
94
|
+
"./types/list/test": "./types/list/test.f.mjs",
|
|
95
|
+
"./types/map/module": "./types/map/module.f.mjs",
|
|
96
|
+
"./types/map/test": "./types/map/test.f.mjs",
|
|
97
|
+
"./types/nibble_set/module": "./types/nibble_set/module.f.mjs",
|
|
98
|
+
"./types/nibble_set/test": "./types/nibble_set/test.f.mjs",
|
|
99
|
+
"./types/nullable/module": "./types/nullable/module.f.mjs",
|
|
100
|
+
"./types/nullable/test": "./types/nullable/test.f.mjs",
|
|
101
|
+
"./types/number/module": "./types/number/module.f.mjs",
|
|
102
|
+
"./types/number/test": "./types/number/test.f.mjs",
|
|
103
|
+
"./types/object/module": "./types/object/module.f.mjs",
|
|
104
|
+
"./types/object/test": "./types/object/test.f.mjs",
|
|
105
|
+
"./types/range/module": "./types/range/module.f.mjs",
|
|
106
|
+
"./types/range/test": "./types/range/test.f.mjs",
|
|
107
|
+
"./types/range_map/module": "./types/range_map/module.f.mjs",
|
|
108
|
+
"./types/range_map/test": "./types/range_map/test.f.mjs",
|
|
109
|
+
"./types/result/module": "./types/result/module.f.mjs",
|
|
110
|
+
"./types/sorted_list/module": "./types/sorted_list/module.f.mjs",
|
|
111
|
+
"./types/sorted_list/test": "./types/sorted_list/test.f.mjs",
|
|
112
|
+
"./types/sorted_set/module": "./types/sorted_set/module.f.mjs",
|
|
113
|
+
"./types/sorted_set/test": "./types/sorted_set/test.f.mjs",
|
|
114
|
+
"./types/string/module": "./types/string/module.f.mjs",
|
|
115
|
+
"./types/string/test": "./types/string/test.f.mjs",
|
|
116
|
+
"./types/string_set/module": "./types/string_set/module.f.mjs",
|
|
117
|
+
"./types/string_set/test": "./types/string_set/test.f.mjs"
|
|
118
|
+
}
|
|
119
119
|
}
|