clawnode 0.0.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/README.md +13 -0
  2. package/index.js +2 -0
  3. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # clawnode
2
+
3
+ > 🚧 这个包正在开发中,敬请期待。
4
+
5
+ ## 安装
6
+
7
+ ```bash
8
+ npm install clawnode
9
+ ```
10
+
11
+ ## License
12
+
13
+ MIT
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ // clawnode - 开发中
2
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "clawnode",
3
+ "version": "0.0.1",
4
+ "description": "clawnode - coming soon",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "MIT"
12
+ }