forked from nodegui/react-nodegui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 979 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 979 Bytes
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
{
"name": "@nodegui/react-nodegui",
"version": "0.1.2",
"description": "React Native for building cross platform desktop applications",
"main": "dist/index.js",
"files": [
"dist"
],
"author": "Atul R <atulanand94@gmail.com>",
"private": false,
"license": "MIT",
"scripts": {
"build": "tsc",
"dev": "tsc && qode ./dist/demo.js",
"dev:watch": "tsc-watch --onSuccess \"npm run dev\""
},
"dependencies": {
"react-reconciler": "^0.20.4"
},
"resolutions": {
"react-devtools-core": "3.5.3",
"react-devtools": "3.5.3"
},
"peerDependencies": {
"@nodegui/nodegui": "*",
"@nodegui/qode": "*",
"react": "*"
},
"devDependencies": {
"@nodegui/nodegui": "^0.1.2",
"@types/node": "^12.0.10",
"@types/react-reconciler": "^0.18.0",
"@types/scheduler": "^0.12.1",
"prettier": "^1.18.2",
"react": "^16.8.6",
"react-devtools": "3.5.3",
"tsc-watch": "^2.2.1",
"typescript": "^3.5.2"
}
}