forked from RocketChat/fuselage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.71 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
{
"name": "@rocket.chat/mp3-encoder",
"version": "0.31.25",
"description": "A LAME encoder to be used in web workers",
"homepage": "https://rocketchat.github.io/Rocket.Chat.Fuselage/",
"author": {
"name": "Rocket.Chat",
"url": "https://rocket.chat/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RocketChat/fuselage.git",
"directory": "packages/mp3-encoder"
},
"bugs": {
"url": "https://github.com/RocketChat/fuselage/issues"
},
"keywords": [
"rocket.chat",
"mp3",
"encoder"
],
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c",
"lint": "lint",
"lint-and-fix": "lint-and-fix",
"lint-staged": "lint-staged",
"test": "jest --runInBand",
"docs": "typedoc",
"bump-next": "bump-next"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@babel/core": "~7.21.4",
"@babel/plugin-transform-runtime": "~7.21.4",
"@babel/preset-env": "~7.21.4",
"@babel/preset-typescript": "~7.21.4",
"@rocket.chat/eslint-config-alt": "workspace:~",
"@rocket.chat/prettier-config": "workspace:~",
"@rollup/plugin-commonjs": "~24.1.0",
"@rollup/plugin-node-resolve": "~15.0.2",
"@rollup/plugin-typescript": "~11.1.0",
"@types/jest": "~29.5.0",
"bump": "workspace:~",
"eslint": "~8.38.0",
"jest": "~29.5.0",
"jest-environment-jsdom": "~29.5.0",
"lint-all": "workspace:~",
"lint-staged": "~13.2.1",
"prettier": "~2.8.7",
"rollup": "~3.20.4",
"ts-jest": "~29.1.0",
"typedoc": "~0.24.1",
"typescript": "~5.0.4"
}
}