soundscript 0.1.2 → 0.1.4
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/numerics.d.ts +1 -0
- package/numerics.js +1 -0
- package/package.json +22 -31
- 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/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.4",
|
|
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"
|
|
@@ -59,6 +63,10 @@
|
|
|
59
63
|
"types": "./hash.d.ts",
|
|
60
64
|
"import": "./hash.js"
|
|
61
65
|
},
|
|
66
|
+
"./derive": {
|
|
67
|
+
"types": "./derive.d.ts",
|
|
68
|
+
"import": "./derive.js"
|
|
69
|
+
},
|
|
62
70
|
"./decode": {
|
|
63
71
|
"types": "./decode.d.ts",
|
|
64
72
|
"import": "./decode.js"
|
|
@@ -75,36 +83,15 @@
|
|
|
75
83
|
"types": "./async.d.ts",
|
|
76
84
|
"import": "./async.js"
|
|
77
85
|
},
|
|
78
|
-
"./
|
|
79
|
-
"types": "./
|
|
80
|
-
"import": "./
|
|
81
|
-
},
|
|
82
|
-
"./experimental/sql": {
|
|
83
|
-
"types": "./experimental/sql.d.ts",
|
|
84
|
-
"import": "./experimental/sql.js"
|
|
85
|
-
},
|
|
86
|
-
"./experimental/css": {
|
|
87
|
-
"types": "./experimental/css.d.ts",
|
|
88
|
-
"import": "./experimental/css.js"
|
|
89
|
-
},
|
|
90
|
-
"./experimental/graphql": {
|
|
91
|
-
"types": "./experimental/graphql.d.ts",
|
|
92
|
-
"import": "./experimental/graphql.js"
|
|
93
|
-
},
|
|
94
|
-
"./experimental/component": {
|
|
95
|
-
"types": "./experimental/component.d.ts",
|
|
96
|
-
"import": "./experimental/component.js"
|
|
97
|
-
},
|
|
98
|
-
"./experimental/debug": {
|
|
99
|
-
"types": "./experimental/debug.d.ts",
|
|
100
|
-
"import": "./experimental/debug.js"
|
|
86
|
+
"./numerics": {
|
|
87
|
+
"types": "./numerics.d.ts",
|
|
88
|
+
"import": "./numerics.js"
|
|
101
89
|
}
|
|
102
90
|
},
|
|
103
91
|
"files": [
|
|
104
92
|
"LICENSE",
|
|
105
93
|
"README.md",
|
|
106
94
|
"bin/**",
|
|
107
|
-
"experimental/**",
|
|
108
95
|
"index.js",
|
|
109
96
|
"index.d.ts",
|
|
110
97
|
"hkt.js",
|
|
@@ -113,6 +100,8 @@
|
|
|
113
100
|
"typeclasses.d.ts",
|
|
114
101
|
"result.js",
|
|
115
102
|
"result.d.ts",
|
|
103
|
+
"value.js",
|
|
104
|
+
"value.d.ts",
|
|
116
105
|
"match.js",
|
|
117
106
|
"match.d.ts",
|
|
118
107
|
"failures.js",
|
|
@@ -131,6 +120,8 @@
|
|
|
131
120
|
"compare.d.ts",
|
|
132
121
|
"hash.js",
|
|
133
122
|
"hash.d.ts",
|
|
123
|
+
"derive.js",
|
|
124
|
+
"derive.d.ts",
|
|
134
125
|
"decode.js",
|
|
135
126
|
"decode.d.ts",
|
|
136
127
|
"encode.js",
|
|
@@ -139,18 +130,18 @@
|
|
|
139
130
|
"codec.d.ts",
|
|
140
131
|
"async.js",
|
|
141
132
|
"async.d.ts",
|
|
142
|
-
"
|
|
143
|
-
"
|
|
133
|
+
"numerics.js",
|
|
134
|
+
"numerics.d.ts"
|
|
144
135
|
],
|
|
145
136
|
"dependencies": {
|
|
146
|
-
"@soundscript/soundscript": "0.1.
|
|
137
|
+
"@soundscript/soundscript": "0.1.4"
|
|
147
138
|
},
|
|
148
139
|
"repository": {
|
|
149
140
|
"type": "git",
|
|
150
|
-
"url": "https://github.com/
|
|
141
|
+
"url": "https://github.com/soundscript-lang/soundscript.git"
|
|
151
142
|
},
|
|
152
|
-
"homepage": "https://github.com/
|
|
143
|
+
"homepage": "https://github.com/soundscript-lang/soundscript",
|
|
153
144
|
"bugs": {
|
|
154
|
-
"url": "https://github.com/
|
|
145
|
+
"url": "https://github.com/soundscript-lang/soundscript/issues"
|
|
155
146
|
}
|
|
156
147
|
}
|
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';
|