forked from antfu/vscode-goto-alias
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.01 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
{
"publisher": "antfu",
"name": "goto-alias",
"displayName": "Goto definition alias",
"version": "0.1.6",
"packageManager": "pnpm@8.14.0",
"description": "Go to definition following alias redirections",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/vscode-goto-alias#readme",
"repository": {
"type": "git",
"url": "https://github.com/antfu/vscode-goto-alias"
},
"bugs": {
"url": "https://github.com/antfu/vscode-goto-alias/issues"
},
"categories": [
"Other"
],
"sideEffects": false,
"main": "./dist/index.js",
"icon": "res/icon.png",
"files": [
"dist"
],
"engines": {
"vscode": "^1.85.0"
},
"activationEvents": [
"onLanguage:vue",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Goto Alias",
"properties": {
"gotoAlias.closeDts": {
"type": "boolean",
"default": false,
"description": "Close the .d.ts file after jumping to the definition"
}
}
}
},
"scripts": {
"build": "NODE_ENV=production tsup src/index.ts --external vscode",
"dev": "NODE_ENV=dev nr build --watch",
"lint": "eslint .",
"vscode:prepublish": "nr build",
"publish": "vsce publish --no-dependencies",
"pack": "vsce package --no-dependencies",
"typecheck": "tsc --noEmit",
"release": "bumpp --commit --push --tag && nr publish"
},
"devDependencies": {
"@antfu/eslint-config": "^2.6.2",
"@antfu/ni": "^0.21.12",
"@babel/types": "^7.23.6",
"@types/node": "^20.10.7",
"@types/vscode": "^1.85.0",
"@vscode/vsce": "^2.22.0",
"bumpp": "^9.2.1",
"eslint": "^8.56.0",
"esno": "^4.0.0",
"pnpm": "^8.14.0",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.11"
}
}