-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.52 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
{
"name": "third-eye",
"displayName": "Manta's Third Eye",
"description": "Jump through files effortlessly.",
"version": "5.5.1",
"publisher": "thisismanta",
"license": "ISC",
"categories": [
"Programming Languages"
],
"keywords": [
"jump",
"goto",
"open",
"import",
"file"
],
"repository": {
"url": "https://github.com/ThisIsManta/vscode-third-eye"
},
"bugs": {
"url": "https://github.com/ThisIsManta/vscode-third-eye/issues"
},
"icon": "docs/logo.png",
"galleryBanner": {
"color": "#212121",
"theme": "dark"
},
"engines": {
"node": ">=18.0.0",
"vscode": "^1.92.0"
},
"activationEvents": [
"onLanguage:go",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:stylus"
],
"main": "dist/extension.js",
"scripts": {
"postinstall": "code --install-extension connor4312.esbuild-problem-matchers",
"build": "esbuild edge/extension.ts --bundle --platform=node --outfile=dist/extension.js --external:vscode --external:typescript --format=cjs",
"watch": "npm run build -- --watch --sourcemap",
"vscode:prepublish": "npm run build -- --minify",
"version": "npx @vscode/vsce publish --pat $VSCE_PUBLISH_TOKEN"
},
"devDependencies": {
"@thisismanta/semantic-version": "^9.1.0",
"@types/lodash": "^4.17.7",
"@types/node": "^18.0.0",
"@types/vscode": "^1.92.0",
"esbuild": "^0.23.1",
"lefthook": "^1.7.14",
"lodash": "^4.17.21",
"stylus-supremacy": "^4.0.0"
},
"dependencies": {
"typescript": "^5.5.4"
}
}