-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
124 lines (124 loc) · 3.62 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
{
"name": "pubspec-assist",
"displayName": "Pubspec Assist",
"description": "Easily add and update dependencies to your Dart and Flutter project.",
"version": "2.3.2",
"publisher": "jeroen-meijer",
"author": {
"name": "Jeroen Meijer",
"url": "https://jfk.dev/",
"email": "[email protected]"
},
"license": "MIT",
"engines": {
"vscode": "^1.61.0"
},
"categories": [
"Other"
],
"keywords": [
"pubspec assist",
"dart",
"flutter",
"dependency",
"package"
],
"icon": "images/logo.png",
"galleryBanner": {
"color": "#181a1f",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/jeroen-meijer/pubspec-assist"
},
"homepage": "https://github.com/jeroen-meijer/pubspec-assist/blob/master/README.md",
"bugs": {
"url": "https://github.com/jeroen-meijer/pubspec-assist/issues",
"email": "[email protected]"
},
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "pubspec-assist.addDependency",
"title": "Add/update dependencies",
"category": "Pubspec Assist"
},
{
"command": "pubspec-assist.addDevDependency",
"title": "Add/update dev dependencies",
"category": "Pubspec Assist"
},
{
"command": "pubspec-assist.sortAllDependencies",
"title": "Sort all dependencies",
"category": "Pubspec Assist"
}
],
"configuration": [
{
"type": "object",
"title": "Pubspec Assist",
"properties": {
"pubspec-assist.autoAddPackage": {
"type": "boolean",
"default": true,
"description": "If a package with a very close match to your search is found, add it to the pubspec file automatically."
},
"pubspec-assist.sortDependencies": {
"type": "boolean",
"default": true,
"description": "Sort all dependencies and dev_dependencies after adding/updating a dependency using the new YAML parser."
},
"pubspec-assist.useLegacySorting": {
"type": "boolean",
"default": false,
"description": "Use the legacy sorting algorithm. Deprecated, should usually be turned off. When disabled (the default), a sorting algorithm will be used that satisfies the \"sort_pub_dependencies\" Dart lint rule."
},
"pubspec-assist.useCaretSyntax": {
"type": "boolean",
"default": true,
"description": "Put a caret in front of the dependency version (i.e.: \"^1.0.0\" instead of \"1.0.0\")."
},
"pubspec-assist.useLegacyParser": {
"type": "boolean",
"default": false,
"description": "Use the legacy YAML text parser. Deprecated, should usually be turned off."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/index.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/js-yaml": "^4.0.4",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/openurl": "^1.0.0",
"@types/vscode": "^1.61.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"source-map-support": "^0.5.20",
"tslint": "^5.20.1",
"typescript": "^4.4.4",
"vscode-test": "^1.6.1"
},
"dependencies": {
"fuse-js-latest": "^3.1.0",
"openurl": "^1.1.1",
"typed-rest-client": "^1.8.6",
"yaml": "^1.10.2"
}
}