-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
48 lines (48 loc) · 1.03 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
{
"name": "@seatsio/seatsio-react",
"version": "15.6.0",
"main": "build/index.js",
"module": "build/index.mjs",
"types": "build/index.d.ts",
"exports": {
"import": "./build/index.mjs",
"default": "./build/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/seatsio/seatsio-react"
},
"scripts": {
"build": "tsup",
"test": "jest --rootDir ./src/test"
},
"author": {
"name": "mroloux"
},
"license": "MIT",
"files": [
"build/"
],
"dependencies": {
"@seatsio/seatsio-types": "5.5.0"
},
"peerDependencies": {
"react": ">=18.0.0"
},
"devDependencies": {
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "15.0.7",
"@types/jest": "29.5.14",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"semver": "7.6.3",
"ts-jest": "29.2.5",
"tsup": "8.3.5",
"typescript": "5.7.2",
"zx": "8.3.0"
}
}