Files
novu/packages/react-native/package.json

54 lines
1.3 KiB
JSON

{
"name": "@novu/react-native",
"version": "2.3.1",
"repository": "https://github.com/novuhq/novu",
"description": "Novu's React Native SDK for building custom inbox notification experiences",
"author": "",
"license": "ISC",
"main": "dist/client/index.js",
"module": "dist/client/index.mjs",
"types": "dist/client/index.d.ts",
"files": [
"dist",
"dist/client/**/*"
],
"sideEffects": false,
"private": false,
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": {
"types": "./dist/client/index.d.mts",
"default": "./dist/client/index.mjs"
},
"require": {
"types": "./dist/client/index.d.ts",
"default": "./dist/client/index.js"
}
}
},
"scripts": {
"build:watch": "tsup --watch",
"build": "tsup && pnpm run check:exports",
"lint": "eslint src",
"check:exports": "attw --pack .",
"release:preview": "pnpx pkg-pr-new publish"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.16.4",
"@types/node": "^20.14.12",
"@types/react": "*",
"@types/react-dom": "*",
"tsup": "^8.2.1",
"typescript": "5.6.2"
},
"peerDependencies": {
"react": ">=17"
},
"dependencies": {
"@novu/react": "workspace:*"
}
}