-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "flutt",
"version": "1.0.0",
"description": "A standalone tool that launches a browser window with mobile device emulation for Flutter web development",
"type": "module",
"main": "src/electron-app.js",
"bin": {
"flutt": "./bin/flutt.js"
},
"scripts": {
"start": "node bin/flutt.js",
"dev": "node --watch bin/flutt.js",
"test": "jest",
"lint": "eslint src bin --ext .js",
"lint:fix": "eslint src bin --ext .js --fix",
"build": "electron-builder",
"dist": "electron-builder --mac",
"dist:all": "electron-builder --mac --win --linux"
},
"keywords": [
"flutter",
"web",
"browser",
"responsive",
"mobile",
"emulation",
"development"
],
"author": "",
"license": "MIT",
"dependencies": {
"chalk": "^5.3.0",
"commander": "^9.5.0"
},
"devDependencies": {
"electron": "^28.1.0",
"electron-builder": "^26.0.12",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.29.1",
"jest": "^29.7.0"
},
"engines": {
"node": ">=14.0.0"
},
"build": {
"appId": "com.flutt.app",
"productName": "Flutt",
"directories": {
"output": "dist"
},
"files": [
"src/**/*",
"bin/**/*",
"assets/**/*",
"node_modules/**/*",
"package.json",
"!src/**/*.test.js",
"!**/.DS_Store"
],
"extraResources": [
{
"from": "assets/icons",
"to": "assets/icons",
"filter": ["**/*"]
}
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "assets/icons/icon.icns",
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
]
},
"win": {
"icon": "assets/icons/icon.ico",
"target": "nsis"
},
"linux": {
"icon": "assets/icons/icon.png",
"target": "AppImage",
"category": "Development"
}
}
}