-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.23 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
{
"name": "alfred-open-in-webstorm",
"version": "1.3.0",
"description": "Alfred workflow to open in WebStorm",
"main": "index.js",
"type": "module",
"keywords": [
"alfred",
"workflow",
"webstorm",
"finder"
],
"author": "vivaxy <[email protected]>",
"license": "GPL-3.0-or-later",
"dependencies": {
"alfy": "^2.0.0",
"fast-glob": "^3.0.4"
},
"scripts": {
"release": "standard-version && npm publish --access=public && git push --follow-tags",
"postinstall": "alfy-init # husky install",
"preuninstall": "alfy-cleanup",
"prepublishOnly": "# pinst --disable",
"postpublish": "# pinst --enable",
"test": "vitest run"
},
"devDependencies": {
"@commitlint/cli": "^12.0.0",
"@commitlint/config-conventional": "^12.0.0",
"@types/node": "^20.14.9",
"husky": "6",
"lint-staged": "^11.0.0",
"pinst": "^2.1.4",
"prettier": "^2.2.1",
"standard-version": "^9.1.0",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
"prettier --write"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"packageManager": "[email protected]"
}