opus-codec 0.0.64 → 0.0.65
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/package.json +52 -28
package/package.json
CHANGED
|
@@ -1,29 +1,53 @@
|
|
|
1
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
|
-
}
|
|
2
|
+
"devDependencies": {
|
|
3
|
+
"@types/node": "14.x",
|
|
4
|
+
"codestreamjs": "^0.0.1",
|
|
5
|
+
"cxx-parser": "0.x",
|
|
6
|
+
"eslint": "8.x",
|
|
7
|
+
"glob": "9.x",
|
|
8
|
+
"package-utilities": "0.x",
|
|
9
|
+
"prettier": "2.x",
|
|
10
|
+
"ts-loader": "9.x",
|
|
11
|
+
"ts-node": "10.x",
|
|
12
|
+
"typescript": "5.x",
|
|
13
|
+
"webpack": "5.x",
|
|
14
|
+
"webpack-cli": "5.x"
|
|
15
|
+
},
|
|
16
|
+
"name": "opus-codec",
|
|
17
|
+
"version": "0.0.65",
|
|
18
|
+
"license": "MIT",
|
|
19
|
+
"files": [
|
|
20
|
+
"{native,runtime,opus}/*.{d.ts,js,wasm}"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "npx tsc -b test --force",
|
|
24
|
+
"build:es:opus": "npx tsc --project opus --module ESNext --outDir es",
|
|
25
|
+
"build:es:actions": "npx tsc --project actions --module ESNext --outDir es",
|
|
26
|
+
"build:es:runtime": "npx tsc --project runtime --module ESNext --outDir es",
|
|
27
|
+
"build:all": "yarn run build && yarn run build:es:opus && yarn run build:es:runtime && yarn run build:es:actions",
|
|
28
|
+
"prepublishOnly": "yarn run build:all && yarn run set-es-paths",
|
|
29
|
+
"set-es-paths": "npx package-utilities --set-es-paths --es-folder es --include \"{opus,runtime,actions}/**/*.js\"",
|
|
30
|
+
"test": "npx ts-node test"
|
|
31
|
+
},
|
|
32
|
+
"dependencies": {
|
|
33
|
+
"autobind-decorator": "^2.4.0",
|
|
34
|
+
"opus-codec": "0.x"
|
|
35
|
+
},
|
|
36
|
+
"browser": {
|
|
37
|
+
"./actions/opus.js": "./es/actions/opus.js",
|
|
38
|
+
"./actions/index.js": "./es/actions/index.js",
|
|
39
|
+
"./actions/actions.js": "./es/actions/actions.js",
|
|
40
|
+
"./actions/Client.js": "./es/actions/Client.js",
|
|
41
|
+
"./opus/index.js": "./es/opus/index.js",
|
|
42
|
+
"./opus/constants.js": "./es/opus/constants.js",
|
|
43
|
+
"./opus/RingBuffer.js": "./es/opus/RingBuffer.js",
|
|
44
|
+
"./opus/OpusGettersAndSetters.js": "./es/opus/OpusGettersAndSetters.js",
|
|
45
|
+
"./opus/Encoder.js": "./es/opus/Encoder.js",
|
|
46
|
+
"./opus/Decoder.js": "./es/opus/Decoder.js",
|
|
47
|
+
"./runtime/index.js": "./es/runtime/index.js",
|
|
48
|
+
"./runtime/Runtime.js": "./es/runtime/Runtime.js",
|
|
49
|
+
"./runtime/ResourcesHolder.js": "./es/runtime/ResourcesHolder.js",
|
|
50
|
+
"./runtime/Integer.js": "./es/runtime/Integer.js",
|
|
51
|
+
"./runtime/Buffer.js": "./es/runtime/Buffer.js"
|
|
52
|
+
}
|
|
53
|
+
}
|