-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 961 Bytes
/
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-copy-names",
"version": "0.0.1",
"description": "Alfred workflow to copy just the file and/or folder names to your clipboard",
"type": "module",
"main": "index.js",
"license": "MIT",
"repository": "chrisspiegl/alfred-copy-names",
"author": {
"name": "Chris Spiegl",
"email": "chris@chrisspiegl.com",
"url": "https://chrisspiegl.com/"
},
"engines": {
"node": ">=14"
},
"scripts": {
"postinstall": "alfy-init",
"preuninstall": "alfy-cleanup",
"cu": "ncu",
"cu:fix": "ncu -u",
"test": "xo --fix"
},
"files": [
"icon.png",
"info.plist",
"index.js",
"src"
],
"keywords": [
"alfred",
"workflow",
"macos",
"mac",
"files",
"folders",
"copy",
"pwd",
"filename",
"filepath",
"folderpath"
],
"dependencies": {
"alfy": "^0.10.0"
},
"devDependencies": {
"npm-check-updates": "^12.0.5",
"xo": "^0.47.0"
}
}