react-native-event
Version:
React context for subscribing to all react native interaction events
63 lines (62 loc) • 1.46 kB
JSON
{
"name": "react-native-event",
"version": "1.0.1",
"description": "React context for subscribing to all react native interaction events",
"keywords": [
"react-native",
"react",
"native",
"outside",
"press",
"touch",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/kmalakoff/react-native-event.git"
},
"license": "MIT",
"author": "Kevin Malakoff <kmalakoff@gmail.com> (https://github.com/kmalakoff)",
"type": "module",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./package.json": "./package.json"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.cts",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"deploy": "tsds deploy",
"docs": "tsds docs",
"format": "biome check --write --unsafe",
"test": "tsds test:browser --config wtr.config.mjs",
"test:engines": "tsds test:browser --config wtr.config.mjs",
"version": "tsds version"
},
"devDependencies": {
"@types/mocha": "*",
"@types/node": "*",
"@types/react": "*",
"@web/dev-server-import-maps": "*",
"react": "*",
"react-native": "*",
"react-test-renderer": "*",
"tsds-web-test-runner": "*"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"engines": {
"node": ">=16"
},
"tsds": {
"source": "src/index.ts"
}
}