This repository has been archived by the owner on Oct 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
44 lines (44 loc) · 1.53 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
{
"name": "typescript-namespace-imports-vscode-plugin",
"displayName": "typescript-namespace-imports-vscode-plugin",
"description": "Adds autocomplete support for \"import * as Symbol from \"symbol\"",
"repository": "https://github.com/Asana/typescript-namespace-imports-vscode-plugin",
"version": "0.2.5",
"publisher": "josh211ua",
"engines": {
"vscode": "^1.63.1"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"main": "./out/extension",
"contributes": {},
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"build": "npm run -S esbuild-base -- --sourcemap",
"watch": "npm run -S esbuild-base -- --sourcemap --watch",
"lint": "eslint . --ext .ts",
"format": "prettier --write src/*.ts src/**/*.ts"
},
"devDependencies": {
"@types/lodash": "^4.14.118",
"@types/node": "^7.0.43",
"@types/vscode": "^1.63.1",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"esbuild": "^0.14.11",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "^2.5.1"
},
"dependencies": {
"lodash": "^4.17.21",
"path": "^0.12.7",
"typescript": "^4.5.4"
}
}