-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.31 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.31 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "lynxjs-crossplatform",
"version": "1.0.0",
"type": "module",
"author": {
"name": "John Doe",
"email": "john.doe@gmail.com"
},
"description": "Lorem Ipsum",
"scripts": {
"build": "concurrently \"npm run build:mobile\" \"npm run build:client\" \"npm run build:app\"",
"build:mobile": "rspeedy build -c ./config/lynx.mobile.ts",
"build:web": "rspeedy build -c ./config/lynx.web.ts",
"build:client": "npm run build:web && rsbuild build -c ./config/lynx.client.ts",
"build:app": "npm run build:web && rsbuild build -c ./config/lynx.app.ts && electron-builder",
"dev:mobile": "rspeedy dev -c ./config/lynx.mobile.ts",
"dev:client": "(test -f build/web/main.web.bundle || npm run build:web) && concurrently \"nodemon --watch ./src --ext * --exec \\\"npm run build:web\\\"\" \"rsbuild dev -o -c ./config/lynx.client.ts\"",
"dev:app": "(test -f build/web/main.web.bundle || npm run build:web) && concurrently \"nodemon --watch ./src --ext * --exec \\\"npm run build:web \\\"\" \"rsbuild build -c ./config/lynx.app.ts && electron main.js\"",
"preview:mobile": "npm run build:mobile && rspeedy preview -c ./config/lynx.mobile.ts",
"preview:client": "npm run build:client && rsbuild preview -o -c ./config/lynx.client.ts",
"check": "biome check --write",
"format": "biome format --write"
},
"main": "main.js",
"build": {
"files": ["main.js", "build/app/**/*"],
"win": {
"icon": "build/app/favicon.ico"
},
"mac": {
"icon": "build/app/favicon.ico"
},
"linux": {
"icon": "build/app/favicon.ico"
},
"directories": {
"output": "build/electron"
}
},
"dependencies": {
"@lynx-js/react": "^0.106.1",
"@lynx-js/web-core": "^0.10.0",
"@lynx-js/web-elements": "^0.5.2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@lynx-js/qrcode-rsbuild-plugin": "^0.3.4",
"@lynx-js/react-rsbuild-plugin": "^0.9.3",
"@lynx-js/rspeedy": "^0.8.6",
"@lynx-js/types": "^3.2.0",
"@rsbuild/core": "^1.2.16",
"@rsbuild/plugin-react": "^1.1.1",
"concurrently": "^9.1.2",
"electron": "^35.1.4",
"electron-builder": "^26.0.12",
"nodemon": "^3.1.9",
"typescript": "~5.7.3"
},
"engines": {
"node": ">=18"
},
"private": true
}