-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.12 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.12 KB
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
{
"name": "npm-intellisense",
"displayName": "npm Intellisense",
"description": "Visual Studio Code plugin that autocompletes npm modules in import statements",
"version": "1.4.5",
"publisher": "christian-kohler",
"engines": {
"vscode": "^1.0.0"
},
"homepage": "https://github.com/ChristianKohler/NpmIntellisense",
"sponsor": {
"url": "https://github.com/sponsors/ChristianKohler"
},
"repository": {
"type": "git",
"url": "https://github.com/ChristianKohler/NpmIntellisense.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact",
"onCommand:npm-intellisense.import"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {
"configuration": {
"type": "object",
"title": "npm-intellisense",
"properties": {
"npm-intellisense.scanDevDependencies": {
"type": "boolean",
"default": false,
"description": "Scans devDependencies as well"
},
"npm-intellisense.recursivePackageJsonLookup": {
"type": "boolean",
"default": true,
"description": "Look for package.json inside nearest directory instead of workspace root"
},
"npm-intellisense.packageSubfoldersIntellisense": {
"type": "boolean",
"default": false,
"description": "(experimental) Enables path intellisense in subfolders of modules"
},
"npm-intellisense.showBuildInLibs": {
"type": "boolean",
"default": false,
"description": "shows build in node modules like 'path' of 'fs'"
},
"npm-intellisense.importES6": {
"type": "boolean",
"default": true,
"description": "For import command. Use import statements instead of require()"
},
"npm-intellisense.importQuotes": {
"type": "string",
"default": "'",
"description": "For import command. The type of quotes to use in the snippet"
},
"npm-intellisense.importLinebreak": {
"type": "string",
"default": ";\r\n",
"description": "For import command. The linebreak used after the snippet"
},
"npm-intellisense.importDeclarationType": {
"type": "string",
"default": "const",
"description": "For import command. The declaration type used for require()"
}
}
},
"commands": [
{
"command": "npm-intellisense.import",
"title": "NPM Intellisense: Import module"
}
]
},
"icon": "images/icon.png",
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^14.17.34",
"@types/vscode": "^1.0.0",
"glob": "^7.2.0",
"mocha": "^9.1.3",
"typescript": "^4.5.2",
"vscode-test": "^1.6.1"
}
}