-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.28 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
{
"name": "runa",
"version": "0.2.0",
"description": "RPG ASCII de exploración, combate e inventario para terminal.",
"private": true,
"bin": "bin.mjs",
"upgrade": "pear://hg11t8ipq5kkc7d4prdmu4mapi18yqm7p43ee5dzmnf7y1yjyo9o",
"scripts": {
"format": "prettier . --write",
"test": "brittle-bare test/index.js",
"lint": "prettier . --check && lunte lib app.js index.js bin.mjs test workers scripts",
"start": "bare bin.mjs --no-updates",
"make": "node scripts/make.js",
"make:darwin-arm64": "bare-build --name runa --standalone --host darwin-arm64 --out ./out/darwin-arm64 bin.mjs",
"make:darwin-x64": "bare-build --name runa --standalone --host darwin-x64 --out ./out/darwin-x64 bin.mjs",
"make:linux-arm64": "bare-build --name runa --standalone --host linux-arm64 --out ./out/linux-arm64 bin.mjs",
"make:linux-x64": "bare-build --name runa --standalone --host linux-x64 --out ./out/linux-x64 bin.mjs",
"make:win32-arm64": "bare-build --name runa --standalone --host win32-arm64 --out ./out/win32-arm64 bin.mjs",
"make:win32-x64": "bare-build --name runa --standalone --host win32-x64 --out ./out/win32-x64 bin.mjs",
"vendor:stellar": "esbuild scripts/stellar-entry.js --bundle --format=cjs --platform=browser --conditions=browser --outfile=vendor/stellar-base.bundle.js"
},
"dependencies": {
"bare-crypto": "^1.15.3",
"bare-os": "^3.9.0",
"bare-path": "^3.0.0",
"bare-process": "^4.5.0",
"bare-storage": "^1.1.0",
"bare-tui": "^0.0.3",
"corestore": "^7.9.2",
"framed-stream": "^1.0.1",
"graceful-goodbye": "^1.3.3",
"hello-pear-worker": "^1.0.0",
"hyperswarm": "^4.17.0",
"paparam": "^1.10.1",
"pear-runtime": "^1.2.0",
"ready-resource": "^1.2.0",
"which-runtime": "^1.4.0",
"text-encoding-polyfill": "^0.6.7"
},
"devDependencies": {
"bare-build": "^1.0.2",
"bare-runtime": "1.29.4",
"brittle": "^3.19.0",
"lunte": "^1.2.0",
"prettier": "^3.6.2",
"prettier-config-holepunch": "^2.0.0",
"@stellar/stellar-base": "^15.0.0",
"esbuild": "^0.28.2"
},
"repository": {
"type": "git",
"url": "https://github.com/Bitcoindefi/runa.git"
},
"author": "Bitcoindefi",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Bitcoindefi/runa/issues"
}
}