-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
90 lines (90 loc) · 2.2 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
{
"name": "flutter-clean-scope",
"displayName": "Flutter Clean Scope",
"description": "An extension that will let you create a flutter project with a clean architecture setup",
"version": "0.0.4",
"publisher": "NoScopeDevs",
"repository": {
"type": "git",
"url": "https://github.com/NoScopeDevs/flutter-clean-scope-vs-extension"
},
"keywords": [
"dart",
"flutter",
"cleanarchitecture",
"riverpod"
],
"icon": "assets/logo.png",
"engines": {
"vscode": "^1.52.0"
},
"categories": [
"Snippets",
"Programming Languages"
],
"activationEvents": [
"onCommand:extension.new-package-empty",
"onCommand:extension.new-feature-empty",
"onCommand:extension.new-feature-example"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "extension.new-package-empty",
"title": "Clean Scope: New Package"
},
{
"command": "extension.new-feature-empty",
"title": "Clean Scope: New Feature"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.new-package-empty",
"when": "explorerResourceIsFolder"
},
{
"command": "extension.new-feature-empty",
"when": "explorerResourceIsFolder"
}
]
},
"snippets": [
{
"language": "dart",
"path": "./snippets/test.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/change-case": "^2.3.1",
"@types/js-yaml": "^3.12.1",
"@types/lodash": "^4.14.121",
"@types/mkdirp": "^0.5.2",
"@types/mocha": "^2.2.42",
"@types/node": "^12.7.8",
"@types/rimraf": "^2.0.2",
"@types/semver": "^6.0.2",
"@types/vscode": "^1.31.0",
"ts-loader": "^6.2.1",
"tslint": "^5.12.1",
"typescript": "^3.5.1",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"change-case": "^3.1.0",
"lodash": "^4.17.19",
"mkdirp": "^0.5.1"
}
}