scalar-autograd
Version:
Scalar-based reverse-mode automatic differentiation in TypeScript.
34 lines (33 loc) • 778 B
JSON
{
"name": "scalar-autograd",
"version": "0.1.8",
"description": "Scalar-based reverse-mode automatic differentiation in TypeScript.",
"main": "dist/Value.js",
"types": "dist/Value.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mfagerlund/ScalarAutograd.git"
},
"keywords": [
"autograd",
"reverse-mode",
"automatic-differentiation",
"scalar",
"typescript"
],
"author": "Mattias Fagerlund <mattias.fagerlund@carretera.se>",
"license": "MIT",
"files": [
"dist/"
],
"devDependencies": {
"ts-node": "^10.0.0",
"typedoc": "^0.28.5",
"typescript": "^5.8.3",
"vitest": "^3.1.4"
},
"scripts": {
"build": "tsc",
"test": "vitest run --globals"
}
}