-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.08 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
{
"name": "quick-toggle-file",
"displayName": "Quick Toggle File",
"description": "A VSCode Extension for quick toggle between current file and last file",
"version": "0.0.3",
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"lint:eslint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts",
"prettier": "prettier --no-editorconfig --config-precedence prefer-file \"**/*.{js,cjs,mjs,ts,cts,mts,json,jsonc,jsx,tsx,css,less,scss,styl,vue,html,md}\"",
"fix:eslint": "npm run lint:eslint -- --fix",
"fix:prettier": "npm run prettier -- --write",
"package": "yes | vsce package --no-dependencies --allow-star-activation",
"publish": "yes | vsce publish --no-dependencies --allow-star-activation",
"vscode:prepublish": "npm run compile",
"release": "bumpp --commit --push --tag && npm run package && npm run publish"
},
"author": "BTB",
"publisher": "BTBest",
"license": "MIT",
"keywords": [
"files",
"quick",
"toggle",
"between"
],
"engines": {
"vscode": "^1.66.0"
},
"icon": "images/logo.png",
"categories": [
"Other"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BTBMan/quick-toggle-file.git"
},
"bugs": {
"url": "https://github.com/BTBMan/quick-toggle-file/issues"
},
"homepage": "https://github.com/BTBMan/quick-toggle-file#readme",
"activationEvents": [
"onStartupFinished",
"onCommand:quickToggleFile.toggle"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "quickToggleFile.toggle",
"title": "quick toggle between current file and last file",
"category": "Quick Toggle File"
}
]
},
"devDependencies": {
"@types/node": "14.x",
"@types/vscode": "^1.66.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vscode/test-electron": "^2.1.3",
"bumpp": "^7.1.1",
"eslint": "^8.11.0",
"typescript": "^4.5.5"
}
}