-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 KB
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
53
54
55
56
57
58
59
60
61
{
"name": "peerconnect",
"version": "1.0.0",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"format": "prettier --write src"
},
"peerDependencies": {
"react": ">=18.0.0",
"@tanstack/react-query": ">=5.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"@tanstack/react-query": {
"optional": true
}
},
"dependencies": {
"@tanstack/react-query": "^5.0.0",
"@types/react-dom": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@tanstack/react-query-devtools": "^5.59.20",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/node": "^20.0.0",
"@types/react": "^18.0.0",
"@vitejs/plugin-react": "^4.0.0",
"@vitest/coverage-v8": "^0.34.6",
"jsdom": "^25.0.1",
"typescript": "^5.0.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.0.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^0.34.6"
}
}