-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.17 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
{
"name": "@jibone/unmineable-cli",
"version": "0.3.0",
"description": "CLI interface to unMineable.",
"repository": {
"type": "git",
"url": "https://github.com/jibone/unmineable-cli.git"
},
"homepage": "https://github.com/jibone/unmineable-cli",
"bin": {
"unmineable": "./dist/index.js"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"lint": "tsc",
"link-cli": "(yarn unlink --global unmineable-cli || true) && chmod +x ./dist/index.js && yarn link --global",
"build": "tsup src/index.ts --format cjs,esm --dts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"crypto",
"coin",
"mining",
"unmineable"
],
"author": "jibone",
"license": "MIT",
"devDependencies": {
"@babel/eslint-parser": "^7.25.1",
"@changesets/cli": "^2.27.7",
"@eslint/js": "^9.9.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.3.0",
"eslint": "^9.9.0",
"globals": "^15.9.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"dependencies": {
"commander": "^12.1.0"
}
}