forked from HighCWu/waifu2x-tfjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.38 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
{
"name": "waifu2x-tfjs",
"version": "0.0.2",
"author": "HighCWu <[email protected]>",
"description": "Image super-resolution using tensorflow.js",
"keywords": [
"image processing",
"super resolution",
"cnn",
"convolutional neural network",
"tfjs"
],
"license": "MIT",
"homepage": "https://github.com/HighCWu/waifu2x-tfjs",
"repository": {
"type": "git",
"url": "https://github.com/HighCWu/waifu2x-tfjs.git"
},
"bugs": {
"url": "https://github.com/HighCWu/waifu2x-tfjs/issues"
},
"main": "./lib/index.js",
"module": "./es6/index.js",
"browse": {
"./dist/index.js": "./lib/index.js"
},
"scripts": {
"start": "rollup -cw",
"build": "rollup -c",
"prepare": "rimraf ./es6/ ./dist/ && npm run build",
"example": "npm i && npm run build && cd example/parcel/ && npm i ../.. && npm i && npm start"
},
"dependencies": {
"@tensorflow/tfjs": "^0.12.5"
},
"devDependencies": {
"@babel/core": "^7.0.0-rc.3",
"@babel/plugin-transform-regenerator": "^7.0.0-rc.3",
"@babel/plugin-transform-runtime": "^7.0.0-rc.3",
"@babel/preset-env": "^7.0.0-rc.3",
"@babel/runtime": "^7.0.0-rc.3",
"rimraf": "^2.6.2",
"rollup": "^0.65.0",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-babel": "^4.0.0-beta.8",
"rollup-plugin-commonjs": "^9.1.6",
"rollup-plugin-node-resolve": "^3.3.0"
}
}