fluidcapture 0.0.0

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/README.md +8 -0
  2. package/index.js +6 -0
  3. package/package.json +18 -0
package/README.md ADDED
@@ -0,0 +1,8 @@
1
+ # FluidCapture
2
+
3
+ This is a placeholder package.
4
+
5
+ Please see our official scoped packages:
6
+ - [API](https://www.npmjs.com/package/@fluidcapture/api)
7
+ - [SDK](https://www.npmjs.com/package/@fluidcapture/sdk)
8
+ - [UI](https://www.npmjs.com/package/@fluidcapture/ui)
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ #!/usr/bin/env node
2
+
3
+ console.log("This is a placeholder package.");
4
+ console.log("Please install @fluidcapture/api instead.");
5
+
6
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,18 @@
1
+ {
2
+ "name": "fluidcapture",
3
+ "version": "0.0.0",
4
+ "description": "Please use @fluidcapture/api instead.",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/fluidcapture/fluidcapture-api.git"
12
+ },
13
+ "keywords": [
14
+ "fluidcapture"
15
+ ],
16
+ "author": "FluidCapture",
17
+ "license": "ISC"
18
+ }