-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
114 lines (114 loc) · 2.5 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
{
"name": "settings-toggle",
"displayName": "Settings Toggle",
"description": "Effortlessly Toggle Settings in Visual Studio Code",
"publisher": "z0al",
"version": "0.0.0-semantically-released",
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Other"
],
"keywords": [
"settings",
"toggle"
],
"galleryBanner": {
"color": "#fff"
},
"icon": "images/icon.png",
"activationEvents": [
"onCommand:settings-toggle.toggle",
"onCommand:settings-toggle.toggle-workspace"
],
"main": "./dist/main.js",
"repository": {
"type": "git",
"url": "https://github.com/z0al/settings-toggle.git"
},
"bugs": {
"url": "https://github.com/z0al/settings-toggle/issues"
},
"contributes": {
"keybindings": [
{
"command": "settings-toggle.toggle",
"key": "ctrl+shift+,",
"mac": "cmd+shift+,"
}
],
"commands": [
{
"title": "User Settings",
"category": "Toggle",
"command": "settings-toggle.toggle"
},
{
"title": "Workspace Settings",
"category": "Toggle",
"command": "settings-toggle.toggle-workspace"
}
]
},
"scripts": {
"build": "esbuild ./src/main.ts --bundle --outfile=dist/main.js --external:vscode --format=cjs --platform=node --minify",
"tsc": "rimraf -rf ./dist && tsc -p ./",
"lint": "eslint src --ext ts",
"test": "jest",
"watch": "tsc -watch -p ./",
"format": "prettier -w '**/*.{ts,json,md}'",
"release": "npm run build && semantic-release",
"vscode:prepublish": "npm run build"
},
"dependencies": {
"capital-case": "^1.0.4",
"lodash.sortby": "^4.7.0",
"p-wait-for": "^3.2.0"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/lodash.sortby": "^4.7.9",
"@types/node": "^17.0.43",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"esbuild": "^0.24.0",
"eslint": "^7.32.0",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^18.0.1",
"semantic-release-vsce": "^3.5.0",
"ts-jest": "^27.1.4",
"typescript": "^4.9.5",
"vsce": "^1.103.0"
},
"release": {
"branches": [
"main"
],
"verifyConditions": [
"semantic-release-vsce",
"@semantic-release/github"
],
"prepare": {
"path": "semantic-release-vsce",
"packageVsix": true
},
"publish": [
"semantic-release-vsce",
{
"path": "@semantic-release/github",
"assets": "*.vsix"
}
]
},
"prettier": {
"useTabs": true,
"printWidth": 72,
"singleQuote": true,
"arrowParens": "always",
"quoteProps": "consistent"
}
}