109 lines
2.9 KiB
JSON
109 lines
2.9 KiB
JSON
{
|
|
"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"
|
|
},
|
|
"__metadata": {
|
|
"installedTimestamp": 1739122836311,
|
|
"size": 1822169
|
|
}
|
|
} |