forked from holepunchto/bare-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.75 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
67
68
69
70
71
72
73
{
"name": "bare-runtime",
"version": "1.15.0",
"description": "Prebuilt Bare binaries for macOS, iOS, Linux, Android, and Windows",
"exports": {
".": "./index.js",
"./package": "./package.json",
"./spawn": "./lib/spawn.js"
},
"bin": {
"bare": "bin/bare"
},
"files": [
"NOTICE",
"index.js",
"bin",
"lib"
],
"workspaces": [
"npm/*"
],
"imports": {
"child_process": {
"bare": "bare-subprocess",
"default": "child_process"
},
"os": {
"bare": "bare-os",
"default": "os"
},
"path": {
"bare": "bare-path",
"default": "path"
}
},
"scripts": {
"test": "prettier . --check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/holepunchto/bare-runtime.git"
},
"author": "Holepunch",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/holepunchto/bare-runtime/issues"
},
"homepage": "https://github.com/holepunchto/bare-runtime",
"dependencies": {
"bare-os": "^3.0.1",
"bare-path": "^3.0.0",
"bare-subprocess": "^5.0.0"
},
"optionalDependencies": {
"bare-runtime-android-arm": "1.15.0",
"bare-runtime-android-arm64": "1.15.0",
"bare-runtime-android-ia32": "1.15.0",
"bare-runtime-android-x64": "1.15.0",
"bare-runtime-darwin-arm64": "1.15.0",
"bare-runtime-darwin-x64": "1.15.0",
"bare-runtime-ios-arm64": "1.15.0",
"bare-runtime-ios-arm64-simulator": "1.15.0",
"bare-runtime-ios-x64-simulator": "1.15.0",
"bare-runtime-linux-arm64": "1.15.0",
"bare-runtime-linux-x64": "1.15.0",
"bare-runtime-win32-arm64": "1.15.0",
"bare-runtime-win32-x64": "1.15.0"
},
"devDependencies": {
"prettier": "^3.3.3",
"prettier-config-standard": "^7.0.0"
}
}