-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 1 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
{
"name": "watch-and-learn",
"version": "1.0.0",
"description": "A chrome extension to make learn videos better using video.js",
"main": "index.js",
"repository": "https://github.com/9at8/watch-and-learn",
"author": "Aditya Thakral <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chrome": "0.0.174",
"@types/node": "16.11.19",
"@types/video.js": "7.3.14",
"@types/videojs-hotkeys": "0.2.0",
"@types/webpack": "5.28.0",
"ts-loader": "9.2.6",
"ts-node": "10.4.0",
"typescript": "4.5.4",
"webpack": "5.65.0",
"webpack-cli": "4.9.1"
},
"scripts": {
"build": "webpack",
"build:watch": "webpack --watch",
"build:prod": "NODE_ENV=production webpack",
"clean": "rm -r ./build ./pkg ./watch-and-learn.zip",
"assemble": "rm -r ./pkg; mkdir ./pkg && cp manifest.json pkg && cp -r build pkg && cp -r static pkg && cp -r lib pkg && cp -r src pkg",
"zip": "yarn run assemble && pushd ./pkg; zip -r ../watch-and-learn.zip $(ls); popd"
}
}