soundscript 0.1.0 → 0.1.2

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/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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "soundscript",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "license": "ISC",
5
5
  "type": "module",
6
6
  "bin": {
@@ -31,6 +31,22 @@
31
31
  "types": "./failures.d.ts",
32
32
  "import": "./failures.js"
33
33
  },
34
+ "./url": {
35
+ "types": "./url.d.ts",
36
+ "import": "./url.js"
37
+ },
38
+ "./fetch": {
39
+ "types": "./fetch.d.ts",
40
+ "import": "./fetch.js"
41
+ },
42
+ "./text": {
43
+ "types": "./text.d.ts",
44
+ "import": "./text.js"
45
+ },
46
+ "./random": {
47
+ "types": "./random.d.ts",
48
+ "import": "./random.js"
49
+ },
34
50
  "./json": {
35
51
  "types": "./json.d.ts",
36
52
  "import": "./json.js"
@@ -101,6 +117,14 @@
101
117
  "match.d.ts",
102
118
  "failures.js",
103
119
  "failures.d.ts",
120
+ "url.js",
121
+ "url.d.ts",
122
+ "fetch.js",
123
+ "fetch.d.ts",
124
+ "text.js",
125
+ "text.d.ts",
126
+ "random.js",
127
+ "random.d.ts",
104
128
  "json.js",
105
129
  "json.d.ts",
106
130
  "compare.js",
@@ -119,7 +143,7 @@
119
143
  "thunk.d.ts"
120
144
  ],
121
145
  "dependencies": {
122
- "@soundscript/soundscript": "0.1.0"
146
+ "@soundscript/soundscript": "0.1.2"
123
147
  },
124
148
  "repository": {
125
149
  "type": "git",
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';