-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
{
"name": "@alexvyber/vyber-cli",
"version": "1.0.4",
"description": "",
"keywords": [],
"license": "ISC",
"author": "",
"type": "commonjs",
"main": "src/bin.ts",
"bin": {
"vyber": "./bin/index.cjs"
},
"scripts": {
"build": "esbuild src/index.ts --outfile=bin/index.cjs --bundle --platform=node --target=node22 --format=cjs",
"format": "biome format --write .",
"lint": "biome lint --write .",
"lint:unsafe": "biome lint --write --unsafe .",
"test": "echo \"Error: no test specified\" && exit 1",
"install:local": "pnpm build && npm link"
},
"dependencies": {
"change-case": "^5.4.4",
"commander": "^12.1.0",
"luxon": "^3.4.4",
"prompts": "^2.4.2",
"tsx": "^4.16.5",
"yaml": "^2.5.0"
},
"devDependencies": {
"@types/luxon": "^3.4.2",
"@types/node": "^22.1.0",
"@types/prompts": "^2.4.9",
"esbuild": "^0.23.0"
},
"packageManager": "[email protected]+sha1.8adba2d20330c02d3856e18c4eb3819d1d3ca6aa",
"publishConfig": {
"access": "public"
}
}