-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.09 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.09 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
75
76
77
78
79
{
"name": "bvm-core",
"version": "1.1.29",
"description": "The native version manager for Bun. Cross-platform, shell-agnostic, and zero-dependency.",
"main": "dist/index.js",
"bin": {
"bvm": "bin/bvm-npm.js"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://bvm-core.pages.dev",
"bugs": {
"url": "https://github.com/EricLLLLLL/bvm/issues"
},
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --target=bun --outfile dist/index.js --minify && bun run scripts/sync-runtime.ts",
"test": "bun test",
"bvm": "bun run src/index.ts",
"bvm:sandbox": "mkdir -p \"$PWD/.sandbox-home\" && HOME=\"$PWD/.sandbox-home\" bun run src/index.ts",
"release": "bun run scripts/check-integrity.ts && bun run build && bun run scripts/release.ts",
"check-integrity": "bun run scripts/check-integrity.ts",
"test:e2e:npm": "bun run scripts/verify-e2e-npm.ts",
"sync-runtime": "bun run scripts/sync-runtime.ts",
"postinstall": "node scripts/postinstall.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EricLLLLLL/bvm.git"
},
"keywords": [
"bun",
"version-manager",
"cli",
"bvm",
"nvm",
"nvm-windows",
"fnm",
"nodenv",
"bun-nvm",
"version-switching"
],
"files": [
"dist/index.js",
"dist/bvm-shim.sh",
"dist/bvm-shim.js",
"bin/bvm-npm.js",
"scripts/postinstall.js",
"install.sh",
"install.ps1",
"README.md"
],
"author": "EricLLLLLL",
"license": "MIT",
"type": "commonjs",
"dependencies": {
"cli-progress": "^3.12.0"
},
"optionalDependencies": {
"@oven/bun-darwin-aarch64": "^1.3.6",
"@oven/bun-darwin-x64": "^1.3.6",
"@oven/bun-linux-aarch64": "^1.3.6",
"@oven/bun-linux-x64": "^1.3.6",
"@oven/bun-windows-x64": "^1.3.6"
},
"devDependencies": {
"@types/bun": "^1.3.4",
"@types/cli-progress": "^3.11.6",
"@types/node": "^24.10.2",
"bun": "^1.3.6",
"esbuild": "^0.27.2",
"execa": "^9.6.1",
"typescript": "^5"
},
"peerDependencies": {
"typescript": "^5"
}
}