-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.39 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
50
51
52
53
{
"name": "@rabrain/electron-as-browser",
"version": "1.1.1",
"description": "Make electron like browser easy and flexible.",
"keywords": [
"electron",
"browser",
"navigation",
"tab",
"addressbar"
],
"exports": {
".": "./dist/index.js",
"./*": "./dist/*.js"
},
"author": "lilac",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hulufei/electron-as-browser.git"
},
"files": [
"dist",
"*.js",
"*.ts"
],
"type": "module",
"scripts": {
"docs": "documentation build *.js -f html -o docs",
"control:build": "esbuild --bundle --platform=node --packages=external example/renderer/control.tsx --outfile=example/renderer/control-compiled.js",
"example:build": "esbuild --bundle --platform=node --format=esm --packages=external example/main.ts --outfile=example/main-bundle.js",
"start": "electron example/main-bundle.js",
"build": "tsc"
},
"dependencies": {
"electron-log": "^3.0.7"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@types/react": "^18.2.69",
"@types/react-dom": "^18.2.22",
"classnames": "^2.5.1",
"electron": "^29.1.6",
"esbuild": "0.20.2",
"file-url": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"typescript": "^5.4.3"
}
}