-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.35 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.35 KB
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
{
"name": "binez",
"version": "0.0.0",
"private": true,
"bin": {
"binez": "dist/index.js"
},
"description": "CLI to help with various binary calculations and conversions.",
"type": "module",
"main": "dist/index.js",
"eslintConfig": {
"root": true
},
"scripts": {
"build": "pnpm clean && tsc -p tsconfig.json && chmod 755 dist/index.js",
"build-link": "pnpm build && pnpm link-cli",
"clean": "shx rm -rf dist/*",
"dev": "tsc -w -p tsconfig.json",
"dev:reset": "pnpm build-link && pnpm dev",
"link-cli": "(yarn unlink --global || true) && chmod 755 dist/index.js && yarn link --global",
"lint": "eslint .",
"release": "release-it",
"test": "vitest"
},
"keywords": [],
"author": "Theodros Yimer",
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@thyi/eslint-config": "^2.1.0",
"@types/node": "^24.3.0",
"eslint": "^9.33.0",
"prettier": "^3.6.2",
"release-it": "^19.0.4",
"shx": "^0.4.0",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vite": "^7.1.2",
"vitest": "^3.2.4"
},
"dependencies": {
"commander": "^14.0.0"
},
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}