-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.63 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
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
{
"name": "bun-utilities",
"version": "0.2.1",
"description": "Bindings for useful functions for bun ",
"napi": {
"name": "bun-utilities",
"triples": {
"defaults": true,
"additional": [
"x86_64-unknown-linux-musl",
"aarch64-unknown-linux-gnu",
"i686-pc-windows-msvc",
"armv7-unknown-linux-gnueabihf",
"aarch64-apple-darwin",
"aarch64-linux-android",
"x86_64-unknown-freebsd",
"aarch64-unknown-linux-musl",
"aarch64-pc-windows-msvc",
"armv7-linux-androideabi"
]
}
},
"author": "xHyroM",
"license": "MIT",
"devDependencies": {
"@napi-rs/cli": "^2.10.1",
"ava": "^4.3.0",
"bun-types": "^0.1.4",
"mitata": "^0.1.6"
},
"engines": {
"node": ">= 10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xHyroM/bun-utilities.git"
},
"bugs": {
"url": "https://github.com/xHyroM/bun-utilities/issues"
},
"keywords": [
"bun",
"utilities",
"rust",
"bindings",
"napi"
],
"files": [
"lib/*",
"README.md",
"LICENSE"
],
"scripts": {
"artifacts": "node scripts/moveArtifacts.mjs",
"build": "napi build --platform --release lib",
"build:debug": "napi build --platform lib",
"bundle": "node scripts/bundle.mjs",
"move": "node scripts/moveFiles.mjs",
"gpr": "node scripts/gpr.mjs",
"prepublishOnly": "node scripts/moveFiles.mjs",
"test:node": "ava tests/node/* && node tests/node/_cleanup.mjs",
"test:bun": "bun wiptest tests/bun/ && bun tests/bun/_cleanup.mjs",
"version": "napi version"
},
"packageManager": "yarn@3.2.1"
}