r-ninja
Version:
r-ninja watches for changes in JSX expressions and updates UI with very less glue code.
47 lines (46 loc) • 1.17 kB
JSON
{
"name": "r-ninja",
"version": "2.0.8",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "node ./scripts/build.js && node ./scripts/local-publish.js",
"npm-publish": "npm run build && node ./scripts/publish.js",
"dev-build": "npm run build && npm run local-publish",
"watch": "npm-watch dev-build"
},
"author": "Boyina Srinivasa Rao",
"license": "MIT",
"description": "r-ninja watches for changes in JSX expressions and updates UI with very less glue code. ",
"keywords": [
"React",
"Watchers",
"Observer",
"Watch",
"State"
],
"homepage": "https://github.com/sboyina/r-ninja",
"repository": {
"url": "https://github.com/sboyina/r-ninja"
},
"devDependencies": {
"@babel/core": "^7.26.7",
"@babel/plugin-syntax-jsx": "^7.25.9",
"@babel/preset-react": "^7.26.3",
"@babel/types": "^7.26.7",
"@types/react": "^19.0.8",
"jest": "^29.7.0",
"npm-watch": "^0.13.0",
"react": "^19.0.0",
"typescript": "^5.7.3"
},
"watch": {
"dev-build": {
"patterns": [
"src"
],
"extensions": "ts,tsx,js,jsx",
"quiet": false
}
}
}