@elliots/typical-compiler-linux-x64 0.2.0-beta.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/bin/typical +0 -0
  2. package/index.js +2 -0
  3. package/package.json +18 -0
package/bin/typical ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ const path = require('path')
2
+ module.exports.binaryPath = path.join(__dirname, 'bin', 'typical')
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "@elliots/typical-compiler-linux-x64",
3
+ "version": "0.2.0-beta.1",
4
+ "description": "Typical compiler binary for Linux x64",
5
+ "license": "MIT",
6
+ "author": "elliots",
7
+ "files": [
8
+ "index.js",
9
+ "bin/typical"
10
+ ],
11
+ "os": [
12
+ "linux"
13
+ ],
14
+ "cpu": [
15
+ "x64"
16
+ ],
17
+ "main": "index.js"
18
+ }