-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.01 KB
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
{
"name": "flipper",
"displayName": "Flipper",
"description": "Extension to flip things around",
"version": "0.0.2",
"engines": {
"vscode": "^1.41.0"
},
"author": {
"name": "Arnon Eilat"
},
"publisher": "Arnon",
"homepage": "https://github.com/ArnonEilat/flipper",
"repository": {
"type": "git",
"url": "https://github.com/ArnonEilat/flipper"
},
"categories": [
"Other"
],
"icon": "images/icon.png",
"galleryBanner": {
"color": "#003a66",
"theme": "dark"
},
"bugs": {
"url": "https://github.com/ArnonEilat/flipper/issues"
},
"activationEvents": [
"onCommand:flipper.flipUp",
"onCommand:flipper.flipDone"
],
"main": "./out/extension.js",
"contributes": {
"keybindings": [
{
"command": "flipper.flipUp",
"key": "alt+a"
},
{
"command": "flipper.flipDone",
"key": "alt+z"
}
],
"commands": [
{
"command": "flipper.flipUp",
"title": "Flip Up"
},
{
"command": "flipper.flipDone",
"title": "Flip Done"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"typecheck": "tsc --noEmit -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prettier": "node ./node_modules/.bin/prettier --write '*.{js,ts,json}'"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/mocha": "^5.2.7",
"@types/node": "^18.19.0",
"@types/vscode": "^1.41.0",
"eslint": "^9.24.0",
"eslint-plugin-perfectionist": "^4.10.1",
"glob": "^7.1.5",
"husky": "^3.1.0",
"mocha": "^11.7.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.29.1",
"@vscode/test-electron": "^2.5.2"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged",
"pre-push": "npm test"
}
}
}