forked from r-publishing/rdrive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.6 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
74
75
76
77
78
79
80
81
82
{
"name": "rdrive",
"version": "1.0.0",
"description": "RDrive, an RChain powered remote file system with fuse",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"start": "nodemon -e ts --exec \"npm run watch\"",
"watch": "tsc -b --verbose && node --experimental-specifier-resolution=node ./dist/index.js --run --contractName mynft --boxName theo --masterRegUri kr8xqpformtykm6m1snnowtwipwas5nkspn5c1gkyu7mg1uhbptdzg --privKey 6428f75c09db8b3a260fc1dcb1c93619bd3eecf6787b003ddc6ba5e87025c177 --readOnlyHost https://node1.rchain.cloud --validatorHost https://node1.rchain.cloud --mnt /home/theoxd/demo2/rdrive --shardId root --pursePrice 500000000",
"compile": "tsc -b --verbose",
"build": "rm -rf pkg && pika build . && cd pkg && pkg . --out-path dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-publishing/rdrive.git"
},
"author": "Theo Hallenius, RChain Publishing LCA",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/r-publishing/rchain-fuse-js/issues"
},
"homepage": "https://github.com/r-publishing/rchain-fuse-js#readme",
"bin": "dist-node/index.js",
"dependencies": {
"@fabcotech/rchain-toolkit": "3.0.1",
"@vercel/ncc": "^0.32.0",
"bindings": "^1.5.0",
"byte-size": "^8.1.0",
"chalk": "^3.0.0",
"cli-progress": "^3.11.1",
"command-line-args": "^5.2.1",
"fuse-native": "^2.2.6",
"fuse-shared-library": "^1.0.2",
"git": "^0.1.5",
"nanoresource": "^1.3.0",
"node-fuse-bindings": "^2.12.4",
"os-service": "^2.2.0",
"queued-jobs": "https://github.com/TheoXD/queued-jobs.git",
"rchain-token": "https://github.com/r-publishing/rchain-token.git"
},
"engines": {
"node": "16.x"
},
"devDependencies": {
"@pika/pack": "^0.5.0",
"@pika/plugin-build-node": "^0.8.1",
"@pika/plugin-copy-assets": "^0.8.1",
"@pika/plugin-standard-pkg": "^0.8.1",
"@pika/plugin-ts-standard-pkg": "^0.9.2",
"@types/byte-size": "^8.1.0",
"@types/cli-progress": "^3.11.0",
"nodemon": "^2.0.15",
"pika-plugin-pkg-node": "https://github.com/TheoXD/pika-plugin-pkg-node.git",
"typescript": "^4.5.2"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-ts-standard-pkg",
{
"tsconfig": "tsconfig.pika.json"
}
],
[
"@pika/plugin-build-node"
],
[
"@pika/plugin-copy-assets",
{
"assets": [
"assets/**/*",
"node_modules/fuse-native/build/Release/*"
]
}
]
]
}
}