recoat 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.
- package/index.js +7 -0
- package/package.json +16 -0
package/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
// recoat - Beautiful animated backgrounds, buttons, and text effects for the web.
|
|
2
|
+
// This is the initial publish to reserve the package name.
|
|
3
|
+
// The full library is coming soon.
|
|
4
|
+
|
|
5
|
+
throw new Error(
|
|
6
|
+
'[recoat] This is a placeholder release. The full library is not yet published. Stay tuned!'
|
|
7
|
+
);
|
package/package.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "recoat",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Beautiful animated backgrounds, buttons, and text effects for the web. Coming soon.",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"backgrounds",
|
|
9
|
+
"animation",
|
|
10
|
+
"canvas",
|
|
11
|
+
"webgl",
|
|
12
|
+
"three.js",
|
|
13
|
+
"ui",
|
|
14
|
+
"effects"
|
|
15
|
+
]
|
|
16
|
+
}
|