-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.15 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
{
"name": "faraday-extension",
"displayName": "Faraday",
"description": "Integrate FaradayCLI into VS Code",
"version": "0.1.3",
"publisher": "yuxiaormobileteam",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gfaraday/faraday_extension"
},
"icon": "images/icon.png",
"engines": {
"vscode": "^1.50.0"
},
"categories": [
"Snippets",
"Other"
],
"activationEvents": [
"workspaceContains:**/.faraday.json",
"workspaceContains:**/pubspec.yaml",
"onCommand:extension.openMyExtension",
"onCommand:extension.useMyExtension",
"onCommand:faraday.config",
"onCommand:faraday.generate",
"onCommand:faraday.publish"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "faraday.config",
"title": "Faraday: Configure Route、Common for Flutter Module"
},
{
"command": "faraday.generate",
"title": "Faraday: Generate Route&Common Method(s) for Swift&Kotlin"
},
{
"command": "faraday.publish",
"title": "Faraday: Publish New Version Cocoapods、AAR"
}
],
"snippets": [
{
"language": "dart",
"path": "./snippets/dart.json"
}
],
"menus": {
"editor/context": [
{
"command": "faraday.generate",
"group": "7_modification",
"when": "editorTextFocus"
}
]
},
"keybindings": [
{
"command": "faraday.generate",
"key": "ctrl+alt+g",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm install && webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/semver": "^7.3.4",
"@types/vscode": "^1.48.0",
"@types/yaml": "^1.9.7",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"mocha": "^8.1.3",
"ts-loader": "^8.0.10",
"typescript": "^4.0.2",
"vscode-test": "^1.4.0",
"webpack": "^5.4.0",
"webpack-cli": "^4.2.0"
},
"dependencies": {
"semver": "^7.3.2",
"yaml": "^1.10.0"
}
}