-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.06 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": "viewtron",
"version": "2.4.1",
"description": "Electron browser view management",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"clean": "rimraf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublish": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/huboneo/viewtron.git"
},
"keywords": [
"electron",
"browserview",
"multi",
"nested",
"views"
],
"author": "huboneo",
"license": "MIT",
"bugs": {
"url": "https://github.com/huboneo/viewtron/issues"
},
"homepage": "https://github.com/huboneo/viewtron#readme",
"devDependencies": {
"@types/lodash": "4.14.144",
"@types/uuid": "3.4.5",
"electron": "6.0.12",
"rimraf": "3.0.0",
"typescript": "3.6.4"
},
"peerDependencies": {
"electron": ">= 6"
},
"dependencies": {
"conduxion": "1.0.7",
"immer": "4.0.1",
"lodash": "4.17.15",
"redux": "4.0.4",
"uuid": "3.3.3"
}
}