forked from getreflect/reflect-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "reflect",
"version": "1.4.0",
"description": "",
"main": "blocker/background.js",
"dependencies": {
"@tensorflow/tfjs": "^1.7.2",
"@tensorflow/tfjs-node": "^1.7.2",
"@types/chrome": "0.0.92",
"@types/jquery": "^3.3.31",
"@types/jqueryui": "^1.12.10",
"esbuild": "^0.8.26",
"typescript": "^3.7.5"
},
"scripts": {
"copy": "cp build/*.js dist/src/",
"build": "tsc && npm run copy && npm run esbuild",
"esbuild": "esbuild build/background.js build/content.js build/popup.js build/options.js --sourcemap --bundle --outdir=dist/src",
"watch": "nodemon -e ts -x \"npm run build\"",
"clean": "rm dist/src/*"
},
"devDependencies": {
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"clang-format": "^1.2.3",
"husky": "^4.2.5",
"nodemon": "^2.0.4",
"parcel-bundler": "^1.7.1",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern '**/*.ts'"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/getreflect/reflect-chrome.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/getreflect/reflect-chrome/issues"
},
"homepage": "https://github.com/getreflect/reflect-chrome#readme"
}