-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.15 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
{
"name": "framed-scroll-motion",
"version": "0.0.1",
"license": "MIT",
"files": [
"dist"
],
"main": "./dist/framed-scroll-motion.umd.js",
"module": "./dist/framed-scroll-motion.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/framed-scroll-motion.es.js",
"require": "./dist/framed-scroll-motion.umd.js"
}
},
"scripts": {
"dev": "vite --port 5050 --config vite.config.demo.js",
"build": "tsc && vite build",
"lint": "eslint . --ext .ts,.tsx",
"build:demo": "tsc && vite build && vite build --config vite.config.demo.js",
"preview": "vite preview --config vite.config.demo.js"
},
"dependencies": {
"framer-motion": "^7.2.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.4.0",
"@types/node": "^18.7.14",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@vitejs/plugin-react": "^1.3.0",
"eslint": "^8.23.0",
"sass": "^1.54.8",
"typescript": "^4.6.3",
"vite": "^2.9.9"
}
}