forked from phartenfeller/alfred-vscode-workspaces
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "@phartenfeller/alfred-vscode-workspaces",
"version": "1.1.1",
"description": "Alfred workflow that allows you to browse and open Visual Studio Code workspaces",
"license": "MIT",
"repository": "https://github.com/phartenfeller/alfred-vscode-workspaces",
"homepage": "https://github.com/phartenfeller/alfred-vscode-workspaces",
"author": {
"name": "Philipp Hartenfeller",
"email": "[email protected]",
"url": "https://hartenfeller.dev"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"alfred",
"alfred-workflow",
"alfy",
"vscode",
"visual-studio-code",
"alfred4",
"alfred5"
],
"engines": {
"node": ">=16"
},
"files": [
"index.js",
"lib",
"*.png",
"info.plist",
".bin"
],
"scripts": {
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup",
"test": "npm run lint:js",
"fix": "eslint --fix",
"lint:js": "eslint . --ext .js",
"release": "npx standard-version"
},
"dependencies": {
"alfy": "^1.0.0",
"better-sqlite3": "^9.4.3",
"fuzzysort": "^2.0.4"
},
"devDependencies": {
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-security": "^1.5.0",
"prettier": "^2.7.1"
}
}