@mustardscript/binding-win32-x64-msvc 0.1.0 → 0.1.2

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.
package/README.md CHANGED
@@ -1,5 +1,3 @@
1
1
  # `@mustardscript/binding-win32-x64-msvc`
2
2
 
3
- Bootstrap package for npm Trusted Publishing setup. This placeholder release is
4
- only meant to reserve the package name and configure npm package settings
5
- before the first real native binary publish.
3
+ This is the **x86_64-pc-windows-msvc** native binding package for `mustardscript`.
Binary file
package/package.json CHANGED
@@ -1,14 +1,35 @@
1
1
  {
2
2
  "name": "@mustardscript/binding-win32-x64-msvc",
3
- "version": "0.1.0",
4
- "private": false,
5
- "description": "Bootstrap package for npm Trusted Publishing setup",
3
+ "version": "0.1.2",
4
+ "cpu": [
5
+ "x64"
6
+ ],
7
+ "main": "index.win32-x64-msvc.node",
8
+ "files": [
9
+ "index.win32-x64-msvc.node"
10
+ ],
11
+ "description": "Sandboxed, subset JavaScript runtime for Node services.",
12
+ "keywords": [
13
+ "javascript",
14
+ "runtime",
15
+ "sandbox",
16
+ "napi",
17
+ "vm"
18
+ ],
19
+ "author": "",
20
+ "homepage": "https://github.com/mustardscript/mustardscript#readme",
6
21
  "license": "Apache-2.0",
7
- "os": ["win32"],
8
- "cpu": ["x64"],
9
- "files": ["README.md", "placeholder.js"],
10
- "main": "placeholder.js",
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/mustardscript/mustardscript.git"
25
+ },
26
+ "bugs": {
27
+ "url": "https://github.com/mustardscript/mustardscript/issues"
28
+ },
11
29
  "publishConfig": {
12
30
  "access": "public"
13
- }
31
+ },
32
+ "os": [
33
+ "win32"
34
+ ]
14
35
  }
package/placeholder.js DELETED
@@ -1,5 +0,0 @@
1
- 'use strict';
2
-
3
- throw new Error(
4
- 'Bootstrap package only: @mustardscript/binding-win32-x64-msvc@0.1.0 does not contain a native binary yet.',
5
- );