-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@dativejs/animate",
"version": "1.0.0",
"description": "Animation Plugin For Dativejs",
"main": "src/index.js",
"module": "dist/dative-animate.esm.js",
"types": "types/index.d.ts",
"unpkg": "dist/dative-animate.js",
"jsdelivr": "dist/dative-animate.js",
"files": [
"index.js",
"index.mjs",
"dist",
"src",
"types",
"rollup.config.js",
],
"scripts": {
"build": "rollup -c"
},
"exports": {
".": {
"import": {
"node": "./index.mjs",
"default": "./dist/dative-animate.esm.js"
},
"require": "./index.js"
},
"./package.json": "./package.json"
},
"buildOptions": {
"name": "dative-animate",
"formats": [
"esm-bundler",
"cjs",
"global"
]
},
"keywords": [
"Animation",
"Dativejs",
"Pizzle",
"PizzleJs",
"Javascript",
"Aos",
"Framer Motion"
],
"author": "Tobithealpha <[email protected]>",
"contributors": [
"Gideon Appau <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tobithedev/dative-animation.git"
},
"bugs": {
"url": "https://github.com/tobithedev/dative-animation/issues"
},
"homepage": "https://tobithedev.github.io/dative-animation"
}