-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.54 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.54 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
{
"name": "rpub-cli",
"version": "1.0.0",
"description": "CLI tools to interact with RPC blockchain",
"private": true,
"main": "index.js",
"type": "module",
"scripts": {
"compile": "tsc -b --verbose",
"build": "npx npm run compile && rm -rf pkg && pika build . && cd pkg && pkg . --out-path dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/r-publishing/rpub-cli.git"
},
"author": "Theo Hallenius, RChain Publishing LCA",
"license": "MIT",
"bugs": {
"url": "https://github.com/r-publishing/rpub-cli/issues"
},
"homepage": "https://github.com/r-publishing/rpub-cli#readme",
"bin": "dist-node/index.js",
"dependencies": {
"@vercel/ncc": "^0.32.0",
"bindings": "^1.5.0",
"command-line-args": "^5.2.1",
"lodash": "^4.17.21",
"lodash.clonedeep": "^4.5.0",
"nanoresource": "^1.3.0",
"@fabcotech/rchain-toolkit": "^3.0.1"
},
"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",
"nodemon": "^2.0.15",
"pika-plugin-pkg-node": "theoxd/pika-plugin-pkg-node",
"typescript": "^4.5.2"
},
"@pika/pack": {
"pipeline": [
[
"@pika/plugin-standard-pkg"
],
[
"@pika/plugin-ts-standard-pkg",
{
"tsconfig": "tsconfig.pika.json"
}
],
[
"@pika/plugin-build-node"
]
]
}
}