-
-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
71 lines (71 loc) · 1.24 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
69
70
71
{
"name": "alfy",
"version": "2.1.0",
"description": "Create Alfred workflows with ease",
"license": "MIT",
"repository": "sindresorhus/alfy",
"funding": "https://github.com/sponsors/sindresorhus",
"type": "module",
"bin": {
"run-node": "./run-node.sh",
"alfy-init": "./init.js",
"alfy-cleanup": "./cleanup.js"
},
"exports": {
"types": "./index.d.ts",
"default": "./index.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"scripts": {
"test": "xo && ava && tsd"
},
"files": [
"index.js",
"index.d.ts",
"init.js",
"cleanup.js",
"run-node.sh",
"lib"
],
"keywords": [
"alfred",
"app",
"workflow",
"plugin",
"helper",
"util",
"utility",
"macos",
"mac"
],
"dependencies": {
"alfred-config": "^0.2.3",
"alfred-link": "^0.3.1",
"alfred-notifier": "^0.2.3",
"cache-conf": "^0.6.0",
"clean-stack": "^5.2.0",
"conf": "^13.0.1",
"dot-prop": "^9.0.0",
"execa": "^9.3.0",
"got": "^14.4.2",
"hook-std": "^3.0.0",
"loud-rejection": "^2.2.0",
"read-package-up": "^11.0.0"
},
"devDependencies": {
"ava": "^6.1.3",
"delay": "^6.0.0",
"nock": "^13.5.4",
"tempfile": "^5.0.0",
"tsd": "^0.31.1",
"xo": "^0.59.2"
},
"tsd": {
"compilerOptions": {
"module": "node16"
}
}
}