-
Notifications
You must be signed in to change notification settings - Fork 246
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.46 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.46 KB
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
{
"name": "@rocket.chat/mp3-encoder",
"version": "0.31.26",
"description": "A LAME encoder to be used in web workers",
"keywords": [
"rocket.chat",
"mp3",
"encoder"
],
"homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/",
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/mp3-encoder"
},
"license": "MIT",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rollup -c",
"docs": "typedoc",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"start": "rollup -c -w",
"test": "jest --runInBand"
},
"devDependencies": {
"@babel/core": "~7.28.6",
"@babel/plugin-transform-runtime": "~7.28.5",
"@babel/preset-env": "~7.28.6",
"@babel/preset-typescript": "~7.28.5",
"@rollup/plugin-commonjs": "~28.0.9",
"@rollup/plugin-node-resolve": "~16.0.3",
"@rollup/plugin-typescript": "~12.1.4",
"eslint": "~9.39.2",
"jest": "~30.2.0",
"jest-environment-jsdom": "~30.2.0",
"lint-all": "workspace:~",
"prettier": "~3.8.1",
"rollup": "~4.59.0",
"ts-jest": "~29.4.6",
"typedoc": "~0.28.16",
"typescript": "~5.9.3"
},
"publishConfig": {
"access": "public"
}
}