-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "react-simplify-carousel",
"version": "0.1.4",
"description": "React light-weight simple carousel UI Library",
"author": "Gihan Kim",
"license": "MIT",
"files": [
"dist/*"
],
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/vgihan/react-simplify-carousel"
},
"keywords": [
"react",
"simplify",
"slider",
"carousel"
],
"scripts": {
"build": "ts-node ./scripts/build.ts",
"build:types": "tsc -p .",
"test": "jest"
},
"dependencies": {
"react": "^18.3.1"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.1",
"@types/node": "^18.16.0",
"@types/react": "^18.3.2",
"esbuild": "^0.12.9",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prop-types": "^15.8.1",
"react-dom": "^18.3.1",
"ts-node": "^10.9.1",
"typescript": "^5.6.3"
}
}