react-native-stock-graphs
Version:
High-performance, interactive stock charts for React Native with TypeScript support
116 lines (115 loc) • 3.38 kB
JSON
{
"name": "react-native-stock-graphs",
"version": "1.0.0",
"description": "High-performance, interactive stock charts for React Native with TypeScript support",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"exports": {
".": {
"import": "./lib/module/index.js",
"require": "./lib/commonjs/index.js",
"types": "./lib/typescript/index.d.ts"
}
},
"files": [
"lib",
"src",
"README.md",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"typecheck": "tsc --noEmit",
"format": "prettier --write src/**/*.{ts,tsx}",
"format:check": "prettier --check src/**/*.{ts,tsx}",
"publish:canary": "npm version prerelease --preid=canary && npm publish --tag canary",
"publish:prod": "npm publish",
"example": "cd example && npm start"
},
"keywords": [
"react-native",
"stock-charts",
"candlestick",
"trading",
"fintech",
"charts",
"typescript",
"expo",
"svg",
"skia",
"realtime"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/react-native-stock-graphs.git"
},
"bugs": {
"url": "https://github.com/yourusername/react-native-stock-graphs/issues"
},
"homepage": "https://github.com/yourusername/react-native-stock-graphs#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.68.0",
"react-native-svg": ">=12.0.0"
},
"peerDependenciesMeta": {
"@shopify/react-native-skia": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@babel/preset-react": "^7.22.0",
"@babel/preset-typescript": "^7.23.0",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-typescript": "^11.1.0",
"@testing-library/jest-native": "^5.4.0",
"@testing-library/react-native": "^12.4.0",
"@types/jest": "^29.5.0",
"@types/react": "^18.2.0",
"@types/react-native": "^0.72.0",
"@types/react-test-renderer": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^30.1.2",
"prettier": "^3.0.0",
"react": "^18.2.0",
"react-native": "^0.72.0",
"react-native-svg": "^13.14.0",
"react-test-renderer": "^18.3.1",
"rimraf": "^5.0.0",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^6.1.0",
"typescript": "^5.2.0"
},
"dependencies": {
"react-native-gesture-handler": "^2.14.0",
"react-native-reanimated": "^3.6.0"
},
"engines": {
"node": ">=16.0.0",
"npm": ">=7.0.0"
}
}