-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 952 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
{
"name": "bif-inspector",
"version": "0.0.1",
"description": "Inspect BIF files (video thumbnails) and extract image thumbnails from it",
"main": "build/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=build/bundle.js",
"build:watch": "esbuild src/index.ts --bundle --outfile=build/bundle.js --watch",
"serve": "cd build && http-server --cors",
"start": "npm run serve & npm run build:watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"bif",
"streaming",
"thumbnails"
],
"author": "pea.berberian@gmail.com",
"license": "MIT",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "5.12.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.12.0",
"esbuild": "0.14.21",
"eslint": "8.9.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsdoc": "^37.9.1",
"http-server": "^14.1.0",
"typescript": "4.5.5"
}
}