forked from Basedash/dockhunt-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.02 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
{
"name": "dockhunt",
"version": "1.0.15",
"description": "Share which apps you have in your macOS dock with Dockhunt.",
"os": [
"darwin"
],
"type": "module",
"main": "index.js",
"bin": {
"dockhunt": "./index.js"
},
"scripts": {
"build": "rm -rf dist && rollup --config",
"package": "npm run build && pkg --targets node16-macos-x64 --output dockhunt ./dist/index.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Basedash/dockhunt-cli.git"
},
"author": "Basedash engineering",
"license": "ISC",
"bugs": {
"url": "https://github.com/Basedash/dockhunt-cli/issues"
},
"homepage": "https://github.com/Basedash/dockhunt-cli#readme",
"dependencies": {
"fs-extra": "^11.1.0",
"node-fetch": "^3.3.0",
"open": "^8.4.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"pkg": "^5.8.0",
"rollup": "^3.12.0",
"rollup-plugin-preserve-shebang": "^1.0.1"
}
}