@andypai/neuroflow
Version:
simple neural network library inspired by karpathy/micrograd and tfjs
62 lines • 1.54 kB
JSON
{
"name": "@andypai/neuroflow",
"version": "0.0.3",
"main": "src/index.js",
"type": "module",
"engines": {
"node": ">=22"
},
"files": [
"src"
],
"author": "Andy Pai <andy@r2pi.co> (https://andypai.me)",
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"scripts": {
"lint": "eslint .",
"fix": "npm run lint -- --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"test:watch": "npm run test -- --watch",
"postversion": "git push --follow-tags --no-verify",
"prepare": "husky install"
},
"devDependencies": {
"@tensorflow/tfjs-node": "4.19.0",
"eslint": "8.46.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "5.0.0",
"husky": "^9.0.11",
"jest": "29.7.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "NO_TTY=true make test"
}
},
"description": "simple neural network library inspired by karpathy/micrograd and tfjs",
"repository": {
"type": "git",
"url": "git+https://github.com/abpai/neuroflow-js.git"
},
"keywords": [
"micrograd",
"autograd",
"neural",
"network"
],
"bugs": {
"url": "https://github.com/abpai/neuroflow-js/issues"
},
"homepage": "https://github.com/abpai/neuroflow-js#readme"
}