-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.88 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
70
71
72
73
{
"name": "@quiltt/react-native",
"version": "3.9.2",
"description": "React Native Components for Quiltt Connector",
"homepage": "https://github.com/quiltt/quiltt-js/tree/main/packages/react-native#readme",
"repository": {
"type": "git",
"url": "https://github.com/quiltt/quiltt-js.git",
"directory": "packages/react-native"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/quiltt/quiltt-js/issues"
},
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**",
"src/**",
"CHANGELOG.md"
],
"main": "dist/index.js",
"scripts": {
"addApiKey": "node scripts/addApiKey.js",
"build": "pnpm run addApiKey && bunchee",
"clean": "rimraf .turbo dist",
"dev": "bunchee --watch",
"lint": "TIMING=1 biome check src/ tests/ --fix",
"typecheck": "tsc --project tsconfig.json --noEmit"
},
"dependencies": {
"@honeybadger-io/core": "6.6.0",
"@quiltt/core": "workspace:*",
"@quiltt/react": "workspace:*",
"lodash.debounce": "4.0.8"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/base-64": "1.0.2",
"@types/lodash.debounce": "4.0.9",
"@types/node": "22.10.2",
"@types/react": "18.3.12",
"base-64": "1.0.0",
"bunchee": "5.6.1",
"react": "18.3.1",
"react-native": "0.76.5",
"react-native-url-polyfill": "2.0.0",
"react-native-webview": "13.12.5",
"rimraf": "6.0.1",
"typescript": "5.7.2"
},
"peerDependencies": {
"base-64": "^1.0.0",
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-native": ">=0.72.0",
"react-native-url-polyfill": "^2.0.0",
"react-native-webview": ">=13.0.0"
},
"tags": [
"quiltt",
"react-native"
],
"publishConfig": {
"access": "public"
}
}