-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.05 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
{
"name": "alfred-to-arvis",
"version": "0.0.8",
"description": "Help to convert the info.plist file format of Alfred-workflow's to the arvis-workflow.json",
"license": "MIT",
"repository": "jopemachine/alfred-to-arvis",
"author": {
"name": "jopemachine",
"email": "jopemachine@gmail.com"
},
"bugs": {
"url": "https://github.com/jopemachine/alfred-to-arvis/issues"
},
"files": [
"dist/*.js",
"index.d.ts"
],
"main": "dist/index.js",
"bin": {
"alfred-to-arvis": "dist/cli.js"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && ava",
"build": "tsc"
},
"keywords": [
"arvis",
"arvis-workflow",
"alfred",
"alfred-workflow",
"cli"
],
"dependencies": {
"chalk": "^4.1.0",
"fs-extra": "^9.1.0",
"lodash": "^4.17.21",
"meow": "^5.0.0",
"plist": "^3.0.1"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fs-extra": "^9.0.11",
"@types/lodash": "^4.14.170",
"@types/meow": "^6.0.0",
"@types/plist": "^3.0.2",
"ava": "^2.1.0",
"execa": "^2.0.0",
"typescript": "^4.3.2",
"xo": "^0.24.0"
}
}