-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.62 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.62 KB
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
{
"name": "web-video-labeler",
"version": "0.0.8",
"description": "Label videos on the web for training image classifiers",
"repository": "https://github.com/danrouse/web-video-labeler",
"homepage": "https://github.com/danrouse/web-video-labeler",
"keywords": [
"labels",
"video",
"annotations",
"label-annotations",
"label-videos",
"browser-extension",
"firefox",
"chrome",
"typescript",
"rollup"
],
"main": "dist/main.js",
"scripts": {
"tsc": "tsc -p tsconfig.json --preserveWatchOutput",
"rollup:main": "rollup -c",
"rollup:background": "rollup dist/downloads/chrome.js --file dist/downloads-chrome.bundle.js --format iife -n downloads",
"copy:static": "cpx \"static/**/*\" dist",
"copy:css": "cpx \"src/**/*.css\" dist",
"copy:dlib": "cpx \"node_modules/dlib-correlation-tracker-js/dist/binding-browser.wasm\" dist",
"generate:manifest": "node prepare-manifest.js",
"generate:fontawesome": "node prepare-fontawesome.js",
"build": "NODE_ENV=production npm-run-all --serial clean tsc copy:* generate:* \"rollup:* -- --compact\"",
"pack:crx": "crx pack dist -o dist/web-video-labeler.crx -p key.pem",
"pack:xpi": "web-ext sign -s dist -a dist -i *.crx -i key.pem",
"pack-clean": "rimraf \"dist/!(icons)/\" \"dist/*.map\" dist/.rollup-hash",
"pack": "npm-run-all --serial build pack-clean pack:*",
"lint": "tslint -p tsconfig.json",
"clean": "rimraf dist/*",
"watch:manifest": "chokidar package.json src/manifest.json prepare-manifest.js -c \"npm run generate:manifest\"",
"watch": "tsc && npm-run-all --parallel -l \"tsc -- -w\" \"copy:* -- -v -w\" generate:* watch:manifest \"rollup:* -- -w\"",
"start": "npm run watch"
},
"author": "Dan Rouse <dan@rouse.house>",
"license": "MIT",
"devDependencies": {
"@fortawesome/fontawesome-free": "^5.6.3",
"@types/chrome": "0.0.73",
"@types/react": "^16.7.17",
"@types/react-dom": "^16.0.11",
"chokidar-cli": "^1.2.1",
"cpx": "^1.5.0",
"crx": "^3.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^2.6.2",
"rollup": "^0.65.2",
"rollup-plugin-alias": "^1.5.1",
"rollup-plugin-bundle-hash": "^1.0.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-css-only": "^0.4.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-replace": "^2.1.0",
"tslint": "^5.12.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.0.3",
"web-ext": "^2.9.3"
},
"dependencies": {
"aws-sdk": "^2.384.0",
"dlib-correlation-tracker-js": "file:../dlib-correlation-tracker-js",
"react": "^16.6.3",
"react-dom": "^16.6.3"
}
}