-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "@nodegui/react-nodegui",
"version": "0.14.0",
"description": "React Native for building cross platform desktop applications",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"author": "Atul R <[email protected]>",
"contributors": {
"name" : "Dongjin Kim",
"email" : "[email protected]",
"url" : "https://github.com/dontcryme/"
},
"private": false,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nodegui/react-nodegui.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc && qode ./dist/demo.js",
"docs": "typedoc && node ./website/docs/scripts/fixdocs.js"
},
"dependencies": {
"@nodegui/nodegui": "^0.67.0",
"phin": "3.7.1",
"react": "^18.3.1",
"react-deep-force-update": "^2.1.3",
"react-proxy": "^2.0.8",
"react-reconciler": "^0.29.2"
},
"peerDependencies": {
"react": "^18.3.1"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@types/react-reconciler": "^0.28.8",
"prettier": "^3.3.2",
"typedoc": "^0.26.3",
"typedoc-plugin-markdown": "^4.1.1",
"typescript": "^5.5.3"
}
}