forked from jiangbo2015/framer-motion-carousel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.6 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
{
"name": "framer-motion-carousel",
"version": "2.0.1",
"description": "A simple framer motion carousel component for React",
"keywords": [
"react",
"component",
"carousel",
"motion",
"framer",
"swipe",
"image gallary",
"framer motion",
"chakra ui"
],
"author": "jiangbo2015 <[email protected]>",
"homepage": "https://github.com/jiangbo2015/framer-motion-carousel.git#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jiangbo2015/framer-motion-carousel.git",
"directory": "packages/accordion"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"typings": "dist/types/index.d.ts",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"start": "nodemon --watch src --exec yarn build -e ts,tsx",
"build": "yarn build:esm & yarn build:cjs & yarn build:types",
"build:esm": "cross-env BABEL_ENV=esm babel src --extensions .ts,.tsx -d dist/esm",
"build:cjs": "cross-env BABEL_ENV=cjs babel src --root-mode upward --extensions .ts,.tsx -d dist/cjs",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationDir dist/types",
"pub": "yarn build && npm publish"
},
"dependencies": {
"framer-motion": "^6.3.11"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/preset-react": "^7.14.5",
"@babel/preset-typescript": "^7.15.0",
"@types/react": "^17.0.30",
"cross-env": "^7.0.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2"
}
}