-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
101 lines (101 loc) · 2.99 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
{
"name": "cunneen-copy-breadcrumbs",
"displayName": "Breadcrumb Copier",
"description": "Copy the active editor's breadcrumbs path",
"publisher": "MikeCunneen",
"author": {
"name": "Mike Cunneen",
"url": "https://github.com/cunneen"
},
"version": "1.2.0",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"icon": "./assets/icon-128.png",
"pricing": "Free",
"extensionKind": [
"ui",
"workspace"
],
"homepage": "https://github.com/cunneen/vscode-copy-breadcrumbs/blob/main/README.md",
"repository": {
"url": "https://github.com/cunneen/vscode-copy-breadcrumbs.git",
"type": "git"
},
"bugs": {
"url": "https://github.com/cunneen/vscode-copy-breadcrumbs/issues"
},
"galleryBanner": {
"color": "#F2E9D8",
"theme": "light"
},
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"commands": [{
"command": "cunneen-copy-breadcrumbs.copy",
"title": "Copy Breadcrumb"
},
{
"command": "cunneen-copy-breadcrumbs.copy-last",
"title": "Copy Breadcrumb - Last Part Only"
}
],
"configuration": {
"title": "Breadcrumb Copier",
"properties": {
"cunneen-copy-breadcrumbs.pasteToTerminal": {
"type": "boolean",
"default": false,
"description": "Automatically paste the breadcrumb path into the active terminal."
},
"cunneen-copy-breadcrumbs.copyToClipboard": {
"type": "boolean",
"default": true,
"description": "Copy the breadcrumb path to the clipboard."
},
"cunneen-copy-breadcrumbs.showAlert": {
"type": "boolean",
"default": true,
"description": "Show a notification message with the clipboard contents."
},
"cunneen-copy-breadcrumbs.separationString": {
"type": "string",
"default": " > ",
"description": "String used to separate breadcrumb path components"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"compile-tests": "tsc -p . --outDir out",
"watch-tests": "tsc -p . -w --outDir out",
"pretest": "yarn run compile-tests && yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "vscode-test",
"pull-dotenv": "npx dotenv-vault@latest pull",
"push-dotenv": "npx dotenv-vault@latest push",
"publish": "eval $(cat ./.env) && VSCE_PAT=$VSCE_PAT vsce publish"
},
"devDependencies": {
"@types/vscode": "^1.86.0",
"@types/mocha": "^10.0.6",
"@types/node": "18.x",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"ts-loader": "^9.5.1",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.9"
}
}