-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.74 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.74 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
{
"name": "@owenizedd/bum",
"version": "0.7.13",
"description": "Fast Bun version manager written in Rust",
"main": "index.js",
"types": "index.d.ts",
"bin": "bin.js",
"repository": {
"type": "git",
"url": "git+https://github.com/owenizedd/bum.git"
},
"keywords": [
"bun",
"version-manager",
"rust",
"cli",
"napi-rs"
],
"author": "owenizedd",
"license": "MIT",
"bugs": {
"url": "https://github.com/owenizedd/bum/issues"
},
"homepage": "https://github.com/owenizedd/bum#readme",
"napi": {
"name": "bum",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"aarch64-unknown-linux-musl",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"universal-apple-darwin",
"x86_64-pc-windows-msvc"
]
}
},
"engines": {
"node": ">= 18"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"artifacts": "napi artifacts",
"build": "napi build --platform --release",
"build:debug": "napi build --platform",
"test": "echo \"No tests yet\"",
"universal": "napi universal -d .",
"version": "napi version"
},
"packageManager": "bun@1.3.0",
"devDependencies": {
"@napi-rs/cli": "^2.18.4"
},
"optionalDependencies": {
"@owenizedd/bum-win32-x64-msvc": "0.7.13",
"@owenizedd/bum-darwin-x64": "0.7.13",
"@owenizedd/bum-linux-x64-gnu": "0.7.13",
"@owenizedd/bum-linux-x64-musl": "0.7.13",
"@owenizedd/bum-linux-arm64-gnu": "0.7.13",
"@owenizedd/bum-linux-arm64-musl": "0.7.13",
"@owenizedd/bum-darwin-arm64": "0.7.13",
"@owenizedd/bum-darwin-universal": "0.7.13"
}
}