├── .github └── workflows │ ├── main.yml │ └── publish.yml ├── .gitignore ├── .gitpod.yml ├── .vscode ├── launch.json ├── settings.json ├── tasks.json └── tasks.json.old ├── .vscodeignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── images ├── auto_complete.gif ├── icon.png ├── importcommand.gif ├── npm_install.gif └── require_withname.gif ├── package.json ├── src ├── NpmIntellisense.ts ├── PackageCompletionItem.ts ├── State.ts ├── command-import.ts ├── config.ts ├── extension.ts ├── fs-functions.ts ├── provide.ts ├── shouldProvide.ts └── util.ts ├── test ├── runTest.ts └── suite │ ├── extension.test.ts │ ├── index.ts │ ├── provide.test.ts │ └── shouldProvide.test.ts └── tsconfig.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | out 2 | node_modules 3 | .vscode-test -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscode/tasks.json.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.vscode/tasks.json.old -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/README.md -------------------------------------------------------------------------------- /images/auto_complete.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/images/auto_complete.gif -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/importcommand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/images/importcommand.gif -------------------------------------------------------------------------------- /images/npm_install.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/images/npm_install.gif -------------------------------------------------------------------------------- /images/require_withname.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/images/require_withname.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/package.json -------------------------------------------------------------------------------- /src/NpmIntellisense.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/NpmIntellisense.ts -------------------------------------------------------------------------------- /src/PackageCompletionItem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/PackageCompletionItem.ts -------------------------------------------------------------------------------- /src/State.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/State.ts -------------------------------------------------------------------------------- /src/command-import.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/command-import.ts -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/config.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/fs-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/fs-functions.ts -------------------------------------------------------------------------------- /src/provide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/provide.ts -------------------------------------------------------------------------------- /src/shouldProvide.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/shouldProvide.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/src/util.ts -------------------------------------------------------------------------------- /test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/test/runTest.ts -------------------------------------------------------------------------------- /test/suite/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/test/suite/extension.test.ts -------------------------------------------------------------------------------- /test/suite/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/test/suite/index.ts -------------------------------------------------------------------------------- /test/suite/provide.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/test/suite/provide.test.ts -------------------------------------------------------------------------------- /test/suite/shouldProvide.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/test/suite/shouldProvide.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChristianKohler/NpmIntellisense/HEAD/tsconfig.json --------------------------------------------------------------------------------