-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 967 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 967 Bytes
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
{
"name": "fix-webm-metainfo",
"version": "1.0.8",
"description": "a lib based on ts-ebml and support large file (>2GB)",
"author": "StaZhu",
"license": "MIT",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"webm",
"mediaRecorder"
],
"repository": {
"type": "git",
"url": "git@github.com:StaZhu/fix-webm-meta.git"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.3.3"
},
"dependencies": {
"buffer": "^5.7.1",
"int64-buffer": "^0.1.10",
"ts-ebml": "^2.0.2"
},
"scripts": {
"build": "npm run clear && tsc",
"dev": "npm run clear && tsc -w",
"clear": "rimraf dist",
"increase": "npm version patch",
"increase:alpha": "npm version prerelease --preid=alpha",
"deploy": "npm run build && npm run increase && npm publish",
"deploy:alpha": "npm run build && npm run increase:alpha && npm publish --tag alpha"
}
}