r2n 0.1.0

A CLI tool for rapidly shipping Rust projects to npm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  "name": "r2n",
  "version": "0.1.0",
  "description": "Rapidly ship Rust projects to npm",
  "license": "MIT OR Apache-2.0",
  "bin": {
    "r2n": "./bin/r2n"
  },
  "files": [
    "bin",
    "dist"
  ],
  "scripts": {
    "build": "r2n build",
    "prepublishOnly": "r2n build --release"
  }
}