{
  "name": "toygrad",
  "repository": "github:fabiospampinato/toygrad",
  "description": "A toy library for building simple neural networks which can be serialized to compact JSON.",
  "version": "2.6.0",
  "type": "module",
  "main": "dist/index.js",
  "exports": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "clean": "tsex clean",
    "compile": "tsex compile",
    "compile:watch": "tsex compile --watch",
    "example:all": "npm run example:xor && npm run example:mnist",
    "example:xor": "node examples/xor.js",
    "example:mnist": "node examples/mnist.js",
    "prepublishOnly": "npm run clean && npm run compile"
  },
  "keywords": [
    "toy",
    "machine",
    "learning",
    "neural",
    "network"
  ],
  "devDependencies": {
    "fava": "^0.0.7",
    "lodash": "^4.17.21",
    "mathjs": "^11.5.0",
    "tsex": "^1.1.4",
    "typescript": "^4.9.3"
  }
}
