-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 1.31 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
{
"name": "@brunoluiz/gifsane",
"version": "1.0.0",
"description": "⏯ Converts GIFs to sane controllable embed video players)",
"scripts": {
"lint": "eslint ./src",
"build": "rm -rf build && mkdir build && cp -R LICENSE manifest.json ./src ./build ",
"link:chrome": "cd src/vendor && ln -sf ./ffmpeg-core.mt.wasm ./ffmpeg-core.wasm && ln -sf ./ffmpeg-core.mt.js ./ffmpeg-core.js",
"link:firefox": "cd src/vendor && ln -sf ./ffmpeg-core.st.wasm ./ffmpeg-core.wasm && ln -sf ./ffmpeg-core.st.js ./ffmpeg-core.js",
"deploy:chrome": "shipit chrome ./build",
"deploy:firefox": "shipit firefox ./build",
"deploy:landing": "gh-pages --dist ./public ",
"version": "node bump-manifest.js $npm_package_version && git add --all"
},
"repository": {
"type": "git",
"url": "git+https://github.com/brunoluiz/gifsane-extension.git"
},
"keywords": [],
"author": "Bruno Luiz Silva <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/brunoluiz/gifsane-extension/issues"
},
"homepage": "https://github.com/brunoluiz/gifsane-extension#readme",
"devDependencies": {
"@wext/shipit": "^0.2.1",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "^3.1.0",
"prettier": "^2.2.1"
}
}