@useanimation/core 0.1.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.
- package/README.md +28 -0
- package/index.js +2 -0
- package/package.json +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @useanimation/core
|
|
2
|
+
|
|
3
|
+
Framework-agnostic core animation primitives. The foundation for `@useanimation/react`, `@useanimation/vue`, and `@useanimation/react-native`.
|
|
4
|
+
|
|
5
|
+
> 🚧 This package is under active development. Stay tuned for the first release!
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i @useanimation/core
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
Coming soon. Most users will want `@useanimation/react` for React/Next.js projects.
|
|
16
|
+
|
|
17
|
+
## Package family
|
|
18
|
+
|
|
19
|
+
| Package | Use case |
|
|
20
|
+
| ---------------------------- | ----------------------------- |
|
|
21
|
+
| `@useanimation/core` | Framework-agnostic primitives |
|
|
22
|
+
| `@useanimation/react` | React hooks _(coming soon)_ |
|
|
23
|
+
| `@useanimation/vue` | Vue composables _(planned)_ |
|
|
24
|
+
| `@useanimation/react-native` | React Native _(planned)_ |
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
MIT
|
package/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@useanimation/core",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Framework-agnostic core animation primitives. Powering @useanimation/react, @useanimation/vue, @useanimation/react-native",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"animation",
|
|
8
|
+
"useanimation",
|
|
9
|
+
"core",
|
|
10
|
+
"motion",
|
|
11
|
+
"framework-agnostic"
|
|
12
|
+
],
|
|
13
|
+
"author": "parvezkose",
|
|
14
|
+
"license": "MIT",
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": ""
|
|
18
|
+
},
|
|
19
|
+
"publishConfig": {
|
|
20
|
+
"access": "public"
|
|
21
|
+
}
|
|
22
|
+
}
|