forked from crux14/webvideo.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 906 Bytes
/
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
{
"name": "webvideo.js",
"version": "0.0.1",
"description": "",
"scripts": {
"build": "node build.js debug",
"watch": "node build.js debug watch",
"lint": "eslint ./src/**/*.ts",
"publish": "node build.js production",
"prepare": "husky install"
},
"keywords": [],
"author": "",
"license": "LGPLv3+",
"devDependencies": {
"@types/audioworklet": "^0.0.25",
"@types/dom-webcodecs": "^0.1.3",
"@typescript-eslint/eslint-plugin": "^4.28.1",
"@typescript-eslint/parser": "^4.28.1",
"esbuild": "^0.12.14",
"eslint": "^7.29.0",
"express": "^4.17.3",
"husky": "^8.0.3",
"lint-staged": "^14.0.0",
"prettier": "2.8.8",
"serve-index": "^1.9.1",
"typescript": "^4.3.5",
"web-audio-peak-meter": "^3.1.0"
},
"dependencies": {
"mp4box": "^0.5.2"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}