-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.21 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
{
"name": "stacked-mvvm",
"displayName": "Flutter Stacked MVVM",
"description": "This plugin is based on filledstacked Stacked architecture. MVVM code generators used in conjunction with the Stacked plugin. ",
"version": "1.2.0",
"engines": {
"vscode": "^1.70.0"
},
"publisher": "AdityaJoshi",
"categories": [
"Other"
],
"keywords": [
"Flutter",
"MVVM",
"Stacked Architecture",
"Code generator",
"Snippet"
],
"license": "MIT",
"homepage": "https://github.com/adityajoshi12/Flutter-Stacked",
"repository": {
"type": "git",
"url": "https://github.com/adityajoshi12/Flutter-Stacked"
},
"bugs": {
"url": "https://github.com/adityajoshi12/Flutter-Stacked/issues"
},
"activationEvents": [
"onCommand:stacked-mvvm.createViews",
"onCommand:stacked-mvvm.initializeArchitecture",
"onCommand:stacked-mvvm.createWidgets"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "stacked-mvvm.createViews",
"title": "Create View",
"category": "Flutter Stacked"
},
{
"command": "stacked-mvvm.initializeArchitecture",
"title": "Initialize Stacked",
"category": "Flutter Stacked"
},
{
"command": "stacked-mvvm.createWidgets",
"title": "Create Widget",
"category": "Flutter Stacked"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/js-yaml": "^3.12.7",
"@types/lodash": "^4.14.184",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.52",
"@types/shelljs": "^0.8.11",
"@types/vscode": "^1.70.0",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"eslint": "^6.8.0",
"glob": "^7.2.3",
"mocha": "^7.2.0",
"vscode-test": "^1.6.1"
},
"dependencies": {
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"shelljs": "^0.8.5",
"spawn-command": "0.0.2-1"
},
"icon": "assets/logo.png"
}