-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.22 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": "slider-moon",
"version": "1.0.3",
"description": "An efficient slide plugin for react",
"author": "Gabriel Escabora <gabrielescabora@gmail.com>",
"repository": "git@github.com:escabora/color-log.git",
"license": "MIT",
"keywords": [
"react",
"slider",
"carousel",
"react-slider",
"plugin-react"
],
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
},
"./dist/*.css": {
"import": "./dist/*.css",
"require": "./dist/*.css"
}
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"typings": "./dist/index.d.ts",
"files": [
"dist",
"dist/*.css"
],
"scripts": {
"build": "tsc && vite build",
"build:watch": "tsc && vite build --watch",
"dev": "vite",
"build:examples": "cd ./examples && yarn build",
"dev:examples": "cd ./examples && yarn dev"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.1",
"@types/node": "^17.0.35",
"prettier": "2.6.2",
"rollup-plugin-typescript-paths": "^1.3.0",
"tslib": "^2.4.0",
"typescript": "^4.7.2",
"vite": "^2.9.9"
}
}