-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 766 Bytes
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
{
"name": "react-image-rope",
"version": "1.0.1",
"description": "A tool do display image as dynamicaly animated object on a line or rope",
"repository": "https://github.com/tzmcion/ReactRopes",
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"types": "./dist/index.d.ts",
"files": [
"./dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
"build": "tsc"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"react": "^18.2.0"
},
"dependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.17",
"@types/react-dom": "^18.2.19",
"@types/react": "^18.2.55",
"react": "^18.2.0",
"typescript": "^5.3.3"
}
}