-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
127 lines (127 loc) · 3.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
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "flutter-l3odr0id-features",
"displayName": "Flutter commands",
"description": "An instrument with some commands binded",
"version": "2.0.1",
"publisher": "Leodroid",
"icon": "images/icon.png",
"engines": {
"vscode": "^1.63.0"
},
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "https://github.com/L3odr0id/flutter_vs_plugin"
},
"activationEvents": [
"onStartupFinished"
],
"license": "MIT",
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "flutter-features.showShellCommandMenu",
"title": "Show Shell Comand Menu"
},
{
"command": "flutter-features.addShellCommandMenu",
"title": "Add Shell Command"
}
],
"configuration": {
"title": "Flutter commands",
"properties": {
"flutter-features.commands": {
"type": "array",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Shell alias"
},
"command": {
"type": "string",
"description": "Shell command"
}
}
},
"description": "Commands",
"default": [
{
"name": "Flutter build_runner build",
"command": "fvm flutter packages pub run build_runner build --delete-conflicting-outputs"
},
{
"name": "Dart build_runner build",
"command": "dart pub run build_runner build --delete-conflicting-outputs"
},
{
"name": "Generate assets with assets_fill (run asset_fill)",
"command": "fvm flutter pub run asset_fill"
},
{
"name": "Run intl_utils:generate",
"command": "fvm flutter pub run intl_utils:generate"
},
{
"name": "Pub get",
"command": "fvm flutter pub get"
},
{
"name": "Build bundle .aab",
"command": "fvm flutter build bundle"
},
{
"name": "Build apk",
"command": "fvm flutter build apk"
},
{
"name": "Build web --web-renderer html",
"command": "fvm flutter build web --release --web-renderer html"
},
{
"name": "Run web --web-renderer html",
"command": "fvm flutter run -d chrome --web-renderer html"
},
{
"name": "Run dart_code_metrics analyze lib",
"command": "fvm flutter pub run dart_code_metrics:metrics analyze lib"
},
{
"name": "Run flutter_launcher_icons:main",
"command": "fvm flutter pub run flutter_launcher_icons:main"
},
{
"name": "Run ffigen",
"command": "fvm flutter pub run ffigen"
}
]
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"vscode:package": "vsce package",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"package": "webpack --mode production --devtool hidden-source-map"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"@types/webpack": "^5.28.0",
"ts-loader": "^9.2.8",
"ts-node": "^10.7.0",
"tsconfig-paths-webpack-plugin": "^3.5.2",
"typescript": "^4.5.4",
"vsce": "^2.7.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
}
}