-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.58 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@quiltt/react",
"version": "3.9.3",
"description": "React Components and Hooks for Quiltt Connector",
"keywords": [
"quiltt",
"quiltt-connector",
"react",
"typescript"
],
"homepage": "https://github.com/quiltt/quiltt-js/tree/main/packages/react#readme",
"repository": {
"type": "git",
"url": "https://github.com/quiltt/quiltt-js.git",
"directory": "packages/react"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/quiltt/quiltt-js/issues"
},
"sideEffects": [],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"src/**",
"CHANGELOG.md"
],
"main": "dist/index.js",
"scripts": {
"build": "bunchee",
"clean": "rimraf .turbo dist",
"dev": "bunchee --watch",
"lint": "TIMING=1 biome check src/ tests/ --fix",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@apollo/client": "^3.12.4",
"@quiltt/core": "workspace:*"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "22.10.5",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"bunchee": "6.2.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"rimraf": "6.0.1",
"typescript": "5.7.3"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"tags": [
"quiltt",
"react"
],
"publishConfig": {
"access": "public"
}
}