-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.34 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
67
68
69
70
71
72
73
74
75
76
{
"name": "framo",
"version": "0.0.20",
"description": "Glorious media processing right in your browser with Typescript support",
"author": "Aditya Krishnan <adityakrshnn@gmail.com>",
"repository": "https://github.com/adityakrshnn/framo",
"license": "MIT",
"keywords": [
"filmstrip",
"frame extraction",
"ffmpeg",
"framo",
"wasm"
],
"files": [
"dist"
],
"main": "./dist/main.js",
"types": "./dist/tsc/browser.d.ts",
"browser": "./dist/esbuild/browser.js",
"scripts": {
"cli": "ts-node src/cli.ts",
"lint": "eslint src/ --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"clean": "rmdir /S /Q dist build package 2>nul",
"ts-node": "ts-node",
"docs": "typedoc --entryPoints src/browser.ts --excludePrivate",
"build": "tsc -p tsconfig.json",
"bd": "npm run build && npm run esbuild-browser:dev && yalc push",
"bp": "npm run lint && npm run build && npm run esbuild-browser && npm run docs && yalc push",
"esbuild-browser": "esbuild src/browser.ts --bundle --minify-whitespace --minify-syntax --target=es6 --format=cjs --outfile=dist/esbuild/browser.js",
"esbuild-browser:dev": "esbuild src/browser.ts --bundle --target=es6 --format=cjs --outfile=dist/esbuild/browser.js",
"esbuild-browser:watch": "esbuild src/browser.ts --bundle --target=es6 --format=cjs --watch --outfile=dist/esbuild/browser.js",
"release": "npm run bp && dotenv release-it --only-version"
},
"devDependencies": {
"@types/ffmpeg": "^1.0.4",
"@types/jest": "^26.0.21",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.19.0",
"@typescript-eslint/parser": "^4.19.0",
"dotenv-cli": "^4.0.0",
"esbuild": "^0.11.11",
"esbuild-plugin-tsc": "^0.3.0",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"release-it": "^14.7.0",
"ts-jest": "^26.5.4",
"ts-loader": "^9.2.2",
"ts-node": "^9.1.1",
"tslib": "^2.2.0",
"typedoc": "^0.20.35",
"typescript": "^4.2.3",
"webpack": "^5.38.1",
"webpack-cli": "^4.7.0"
},
"dependencies": {
"rxjs": "^7.1.0"
},
"release-it": {
"git": {
"tag": true,
"commit": true,
"push": true
},
"github": {
"release": true
},
"npm": {
"publish": true
}
}
}