-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
131 lines (131 loc) · 3.59 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"name": "mp3-mediarecorder",
"version": "4.0.5",
"description": "MediaRecorder ponyfill that records audio as mp3",
"main": "dist/index.js",
"module": "dist/index.es5.js",
"es2015": "dist/index.es.js",
"browser": "dist/index.umd.js",
"typings": "dist/index.d.ts",
"types": "dist/index.d.ts",
"files": [
"dist",
"worker",
"types",
"package.json",
"yarn.lock",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest",
"format": "npm run format:write",
"format:write": "prettier --write .",
"format:check": "prettier -l .",
"tsc": "tsc --noEmit",
"build": "del dist worker && rollup -c rollup.config.ts --configPlugin typescript --bundleConfigAsCjs && cpy --flat node_modules/vmsg/vmsg.wasm dist && cpy --flat dist/worker/* worker && del dist/worker",
"vercel-build": "parcel build -d public examples/basic/index.html",
"bundlesize": "bundlesize",
"dev": "parcel examples/basic/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elsmr/mp3-mediarecorder.git"
},
"keywords": [
"mediarecorder",
"polyfill",
"ponyfill",
"mp3",
"mediastream",
"audio",
"encoding",
"libmp3lame",
"webassembly",
"vmsg",
"record",
"encode"
],
"author": "Elias Meire",
"license": "MIT",
"bugs": {
"url": "https://github.com/elsmr/mp3-mediarecorder/issues"
},
"homepage": "https://github.com/elsmr/mp3-mediarecorder#readme",
"devDependencies": {
"@babel/core": "7.23.3",
"@babel/preset-env": "7.23.3",
"@rollup/plugin-babel": "6.0.4",
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-typescript": "11.1.5",
"@semantic-release/git": "10.0.1",
"@types/dom-mediacapture-record": "1.0.19",
"@types/jest": "29.5.8",
"@types/node": "20.9.0",
"bundlesize": "0.18.1",
"cpy-cli": "5.0.0",
"del-cli": "5.1.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"parcel-bundler": "1.12.5",
"prettier": "3.1.0",
"rollup": "4.4.0",
"semantic-release": "22.0.7",
"ts-jest": "29.1.1",
"tslib": "2.6.2",
"typescript": "5.2.2"
},
"dependencies": {
"event-target-shim": "6.0.2",
"vmsg": "0.4.0"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"browserslist": [
"Firefox >= 52",
"Chrome >= 57",
"Edge >= 16",
"Safari >= 11"
],
"bundlesize": [
{
"path": "dist/index.umd.js",
"maxSize": "9kB"
},
{
"path": "dist/index.es5.js",
"maxSize": "9kB"
},
{
"path": "dist/index.es.js",
"maxSize": "9kB"
},
{
"path": "dist/index.js",
"maxSize": "9kB"
},
{
"path": "worker/index.umd.js",
"maxSize": "2.5kB"
},
{
"path": "worker/index.es5.js",
"maxSize": "2.5kB"
},
{
"path": "worker/index.es.js",
"maxSize": "2.5kB"
},
{
"path": "worker/index.js",
"maxSize": "2.5kB"
}
]
}