soundscript 0.1.1 → 0.1.3
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/derive.d.ts +1 -0
- package/derive.js +1 -0
- package/fetch.d.ts +1 -0
- package/fetch.js +1 -0
- package/numerics.d.ts +1 -0
- package/numerics.js +1 -0
- package/package.json +46 -31
- package/random.d.ts +1 -0
- package/random.js +1 -0
- package/text.d.ts +1 -0
- package/text.js +1 -0
- package/url.d.ts +1 -0
- package/url.js +1 -0
- package/value.d.ts +1 -0
- package/value.js +1 -0
- package/experimental/component.d.ts +0 -1
- package/experimental/component.js +0 -1
- package/experimental/css.d.ts +0 -1
- package/experimental/css.js +0 -1
- package/experimental/debug.d.ts +0 -1
- package/experimental/debug.js +0 -1
- package/experimental/graphql.d.ts +0 -1
- package/experimental/graphql.js +0 -1
- package/experimental/sql.d.ts +0 -1
- package/experimental/sql.js +0 -1
- package/thunk.d.ts +0 -1
- package/thunk.js +0 -1
package/derive.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/derive';
|
package/derive.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/derive';
|
package/fetch.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/fetch';
|
package/fetch.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/fetch';
|
package/numerics.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/numerics';
|
package/numerics.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/numerics';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "soundscript",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"license": "ISC",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
"types": "./result.d.ts",
|
|
24
24
|
"import": "./result.js"
|
|
25
25
|
},
|
|
26
|
+
"./value": {
|
|
27
|
+
"types": "./value.d.ts",
|
|
28
|
+
"import": "./value.js"
|
|
29
|
+
},
|
|
26
30
|
"./match": {
|
|
27
31
|
"types": "./match.d.ts",
|
|
28
32
|
"import": "./match.js"
|
|
@@ -31,6 +35,22 @@
|
|
|
31
35
|
"types": "./failures.d.ts",
|
|
32
36
|
"import": "./failures.js"
|
|
33
37
|
},
|
|
38
|
+
"./url": {
|
|
39
|
+
"types": "./url.d.ts",
|
|
40
|
+
"import": "./url.js"
|
|
41
|
+
},
|
|
42
|
+
"./fetch": {
|
|
43
|
+
"types": "./fetch.d.ts",
|
|
44
|
+
"import": "./fetch.js"
|
|
45
|
+
},
|
|
46
|
+
"./text": {
|
|
47
|
+
"types": "./text.d.ts",
|
|
48
|
+
"import": "./text.js"
|
|
49
|
+
},
|
|
50
|
+
"./random": {
|
|
51
|
+
"types": "./random.d.ts",
|
|
52
|
+
"import": "./random.js"
|
|
53
|
+
},
|
|
34
54
|
"./json": {
|
|
35
55
|
"types": "./json.d.ts",
|
|
36
56
|
"import": "./json.js"
|
|
@@ -43,6 +63,10 @@
|
|
|
43
63
|
"types": "./hash.d.ts",
|
|
44
64
|
"import": "./hash.js"
|
|
45
65
|
},
|
|
66
|
+
"./derive": {
|
|
67
|
+
"types": "./derive.d.ts",
|
|
68
|
+
"import": "./derive.js"
|
|
69
|
+
},
|
|
46
70
|
"./decode": {
|
|
47
71
|
"types": "./decode.d.ts",
|
|
48
72
|
"import": "./decode.js"
|
|
@@ -59,36 +83,15 @@
|
|
|
59
83
|
"types": "./async.d.ts",
|
|
60
84
|
"import": "./async.js"
|
|
61
85
|
},
|
|
62
|
-
"./
|
|
63
|
-
"types": "./
|
|
64
|
-
"import": "./
|
|
65
|
-
},
|
|
66
|
-
"./experimental/sql": {
|
|
67
|
-
"types": "./experimental/sql.d.ts",
|
|
68
|
-
"import": "./experimental/sql.js"
|
|
69
|
-
},
|
|
70
|
-
"./experimental/css": {
|
|
71
|
-
"types": "./experimental/css.d.ts",
|
|
72
|
-
"import": "./experimental/css.js"
|
|
73
|
-
},
|
|
74
|
-
"./experimental/graphql": {
|
|
75
|
-
"types": "./experimental/graphql.d.ts",
|
|
76
|
-
"import": "./experimental/graphql.js"
|
|
77
|
-
},
|
|
78
|
-
"./experimental/component": {
|
|
79
|
-
"types": "./experimental/component.d.ts",
|
|
80
|
-
"import": "./experimental/component.js"
|
|
81
|
-
},
|
|
82
|
-
"./experimental/debug": {
|
|
83
|
-
"types": "./experimental/debug.d.ts",
|
|
84
|
-
"import": "./experimental/debug.js"
|
|
86
|
+
"./numerics": {
|
|
87
|
+
"types": "./numerics.d.ts",
|
|
88
|
+
"import": "./numerics.js"
|
|
85
89
|
}
|
|
86
90
|
},
|
|
87
91
|
"files": [
|
|
88
92
|
"LICENSE",
|
|
89
93
|
"README.md",
|
|
90
94
|
"bin/**",
|
|
91
|
-
"experimental/**",
|
|
92
95
|
"index.js",
|
|
93
96
|
"index.d.ts",
|
|
94
97
|
"hkt.js",
|
|
@@ -97,16 +100,28 @@
|
|
|
97
100
|
"typeclasses.d.ts",
|
|
98
101
|
"result.js",
|
|
99
102
|
"result.d.ts",
|
|
103
|
+
"value.js",
|
|
104
|
+
"value.d.ts",
|
|
100
105
|
"match.js",
|
|
101
106
|
"match.d.ts",
|
|
102
107
|
"failures.js",
|
|
103
108
|
"failures.d.ts",
|
|
109
|
+
"url.js",
|
|
110
|
+
"url.d.ts",
|
|
111
|
+
"fetch.js",
|
|
112
|
+
"fetch.d.ts",
|
|
113
|
+
"text.js",
|
|
114
|
+
"text.d.ts",
|
|
115
|
+
"random.js",
|
|
116
|
+
"random.d.ts",
|
|
104
117
|
"json.js",
|
|
105
118
|
"json.d.ts",
|
|
106
119
|
"compare.js",
|
|
107
120
|
"compare.d.ts",
|
|
108
121
|
"hash.js",
|
|
109
122
|
"hash.d.ts",
|
|
123
|
+
"derive.js",
|
|
124
|
+
"derive.d.ts",
|
|
110
125
|
"decode.js",
|
|
111
126
|
"decode.d.ts",
|
|
112
127
|
"encode.js",
|
|
@@ -115,18 +130,18 @@
|
|
|
115
130
|
"codec.d.ts",
|
|
116
131
|
"async.js",
|
|
117
132
|
"async.d.ts",
|
|
118
|
-
"
|
|
119
|
-
"
|
|
133
|
+
"numerics.js",
|
|
134
|
+
"numerics.d.ts"
|
|
120
135
|
],
|
|
121
136
|
"dependencies": {
|
|
122
|
-
"@soundscript/soundscript": "0.1.
|
|
137
|
+
"@soundscript/soundscript": "0.1.3"
|
|
123
138
|
},
|
|
124
139
|
"repository": {
|
|
125
140
|
"type": "git",
|
|
126
|
-
"url": "https://github.com/
|
|
141
|
+
"url": "https://github.com/soundscript-lang/soundscript.git"
|
|
127
142
|
},
|
|
128
|
-
"homepage": "https://github.com/
|
|
143
|
+
"homepage": "https://github.com/soundscript-lang/soundscript",
|
|
129
144
|
"bugs": {
|
|
130
|
-
"url": "https://github.com/
|
|
145
|
+
"url": "https://github.com/soundscript-lang/soundscript/issues"
|
|
131
146
|
}
|
|
132
147
|
}
|
package/random.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/random';
|
package/random.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/random';
|
package/text.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/text';
|
package/text.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/text';
|
package/url.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/url';
|
package/url.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/url';
|
package/value.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/value';
|
package/value.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '@soundscript/soundscript/value';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/component';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/component';
|
package/experimental/css.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/css';
|
package/experimental/css.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/css';
|
package/experimental/debug.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/debug';
|
package/experimental/debug.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/debug';
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/graphql';
|
package/experimental/graphql.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/graphql';
|
package/experimental/sql.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/sql';
|
package/experimental/sql.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/experimental/sql';
|
package/thunk.d.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/thunk';
|
package/thunk.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from '@soundscript/soundscript/thunk';
|