-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "bunvm",
"version": "1.1.0",
"description": "Bun Version Manager - Switch between different versions of Bun easily",
"bin": {
"bvm": "./dist/bvm.js"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"scripts": {
"build": "tsup",
"dev": "tsx src/bvm.ts",
"clean": "rm -rf dist",
"prepublishOnly": "pnpm run clean && pnpm run build",
"start": "node dist/bvm.js",
"format": "prettier --write --ignore-path .gitignore --cache .",
"lint": "eslint --ext .ts src --cache",
"lint:fix": "eslint --ext .ts src --cache --fix",
"release": "pnpm lint && pnpm format && pnpm version patch && git push --follow-tags && pnpm publish",
"release:minor": "pnpm version minor && git push --follow-tags && pnpm publish",
"release:major": "pnpm version major && git push --follow-tags && pnpm publish"
},
"keywords": [
"bun",
"version",
"manager",
"version-manager",
"bun version manager",
"cli",
"javascript",
"typescript",
"nodejs"
],
"author": "Tarun Joshi",
"license": "MIT",
"homepage": "https://github.com/MrHacker26/bvm#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/MrHacker26/bvm.git"
},
"bugs": {
"url": "https://github.com/MrHacker26/bvm/issues"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.11.0",
"dependencies": {
"axios": "^1.9.0",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"commander": "^13.1.0",
"unzipper": "^0.12.3"
},
"devDependencies": {
"@eslint/js": "^9.27.0",
"@types/cli-progress": "^3.11.6",
"@types/node": "^22.15.18",
"@types/unzipper": "^0.10.11",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"eslint": "^9.27.0",
"globals": "^16.1.0",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"tsx": "^4.19.4",
"typescript": "^5.0.0",
"typescript-eslint": "^8.32.1"
}
}