-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "@plaude/react-native",
"version": "1.1.1",
"description": "Plaude React Native SDK",
"keywords": [
"chat",
"support"
],
"homepage": "https://github.com/plaude/plaude-react-native",
"bugs": {
"url": "https://github.com/plaude/plaude-react-native/issues"
},
"author": "Manu Lopez <[email protected]> (https://x.com/manulpz4)",
"repository": {
"type": "git",
"url": "git+https://github.com/plaude/plaude-react-native.git"
},
"files": [
"dist"
],
"type": "module",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.4",
"@changesets/cli": "^2.27.8",
"@types/react": "^18.3.8",
"prettier": "^3.3.3",
"react": "^18.3.1",
"typescript": "^5.5.4",
"vitest": "^2.1.1"
},
"scripts": {
"build": "tsc",
"ci": "npm run build && npm run check-format && npm run check-exports",
"format": "prettier --write .",
"check-format": "prettier --check .",
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
"test": "vitest run",
"dev": "vitest",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"main": "dist/index.js",
"dependencies": {
"react-native-webview": "^13.12.2"
}
}