-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
133 lines (133 loc) · 4.29 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "path-intellisense",
"private": true,
"displayName": "Path Intellisense",
"description": "Visual Studio Code plugin that autocompletes filenames",
"version": "2.10.0",
"publisher": "christian-kohler",
"engines": {
"vscode": "^1.43.0"
},
"homepage": "https://github.com/ChristianKohler/PathIntellisense",
"sponsor": {
"url": "https://github.com/sponsors/ChristianKohler"
},
"repository": {
"type": "git",
"url": "https://github.com/ChristianKohler/PathIntellisense.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"capabilities": {
"untrustedWorkspaces": {
"supported": true
},
"virtualWorkspaces": {
"supported": true
}
},
"contributes": {
"configuration": {
"type": "object",
"title": "path-intellisense",
"properties": {
"path-intellisense.extensionOnImport": {
"type": "boolean",
"default": false,
"description": "Adds the file extension to a import statements"
},
"path-intellisense.mappings": {
"type": "object",
"default": {},
"description": "Mappings for paths. The values should be interpreted as absolute paths (and can use '${workspaceFolder}')"
},
"path-intellisense.showHiddenFiles": {
"type": "boolean",
"default": false,
"description": "Show hidden files"
},
"path-intellisense.autoSlashAfterDirectory": {
"type": "boolean",
"default": false,
"description": "Automatically adds slash after directory"
},
"path-intellisense.absolutePathToWorkspace": {
"type": "boolean",
"default": true,
"description": "Sets an absolute path to the current workspace"
},
"path-intellisense.absolutePathTo": {
"type": "string",
"description": "If defined, unmapped absolute path imports are based on this location. Takes priority over 'absolutePathToWorkspace' if both are defined"
},
"path-intellisense.showOnAbsoluteSlash": {
"type": "boolean",
"default": true,
"description": "Shows suggestions when the import starts with a forward slash ('/')"
},
"path-intellisense.ignoreTsConfigBaseUrl": {
"type": "boolean",
"default": false,
"description": "Ignores tsconfig file for mappings"
},
"path-intellisense.autoTriggerNextSuggestion": {
"type": "boolean",
"default": false,
"description": "Automatically triggers next suggestion after previous suggestion"
}
}
}
},
"main": "./out/extension.js",
"browser": "./dist/web/extension.js",
"icon": "icon/path-intellisense.png",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"test-headless": "xvfb-run -a npm test",
"package": "vsce package",
"deploy": "vsce publish",
"prepack": "npm run package && npm run package-web",
"compile-web": "webpack --config ./build/web-extension.webpack.config.js",
"watch-web": "webpack --watch --config ./build/web-extension.webpack.config.js",
"package-web": "webpack --mode production --devtool hidden-source-map --config ./build/web-extension.webpack.config.js"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.0.5",
"@types/benchmark": "^1.0.31",
"@types/glob": "^7.1.1",
"@types/mocha": "^7.0.1",
"@types/node": "^12.11.7",
"@types/vscode": "^1.43.0",
"@typescript-eslint/eslint-plugin": "^2.18.0",
"@typescript-eslint/parser": "^2.18.0",
"eslint": "^6.8.0",
"glob": "^7.1.6",
"mocha": "^7.0.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"ts-loader": "^9.2.5",
"typescript": "^3.9.10",
"vsce": "^1.76.0",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0"
},
"dependencies": {
"@types/json5": "0.0.30",
"@vscode/test-electron": "^2.4.0",
"benchmark": "^2.1.4",
"json5": "^2.1.2",
"lodash": "^4.17.19",
"minimatch": "^3.0.4"
}
}