-
Notifications
You must be signed in to change notification settings - Fork 62
/
package.json
89 lines (89 loc) · 2.98 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
{
"name": "autoimport",
"displayName": "Auto Import",
"description": "Automatically finds, parses and provides code actions and code completion for all available imports. Works with Typescript and TSX",
"version": "1.5.3",
"publisher": "steoates",
"engines": {
"vscode": "^1.17.0"
},
"galleryBanner": {
"color": "#2d4794",
"theme": "dark"
},
"keywords": [
"typescript",
"imports",
"require",
"auto import",
"multi-root ready"
],
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./out/src/extension",
"contributes": {
"commands": [
{
"command": "extension.scanNodeModules",
"title": "Scan node_modules for imports"
}
],
"configuration": {
"type": "object",
"title": "Auto Import configuration",
"properties": {
"autoimport.filesToScan": {
"type": "string",
"default": "**/*.{ts,tsx}",
"description": "Glob for files to watch and scan, e.g ./src/** ./src/app/**/*.ts. Defaults to **/*.{ts,tsx}"
},
"autoimport.showNotifications": {
"type": "boolean",
"default": false,
"description": "Specifies wether to show notifications from Auto Import"
},
"autoimport.doubleQuotes": {
"type": "boolean",
"default": false,
"description": "Specifies wether to use double quotes"
},
"autoimport.spaceBetweenBraces": {
"type": "boolean",
"default": true,
"description": "Specifies wether to use spaces between first and last brace"
},
"autoimport.autoComplete": {
"type": "boolean",
"default": true,
"description": "Adds found items to intellisense and automatically imports then"
},
"autoimport.useSemiColon": {
"type": "boolean",
"default": true,
"description": "Use ; at the end of a line e.g Import * from ./app or Import * from ./app; - Default True"
}
}
}
},
"icon": "icon.png",
"homepage": "https://github.com/soates/Auto-Import",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.0.3",
"vscode": "^1.0.0",
"@types/node": "^6.0.40"
},
"dependencies": {
"lodash": "^4.13.1"
}
}