stargrad
Version:
A JavaScript library for automatic gradient calculation, inspired by PyTorch
53 lines (52 loc) • 1.25 kB
JSON
{
"name": "stargrad",
"version": "1.1.1",
"description": "A JavaScript library for automatic gradient calculation, inspired by PyTorch",
"keywords": [
"autograd",
"grad",
"pytorch",
"tensorflow",
"machine-learning",
"deep-learning",
"tensor",
"gradient",
"neural-network"
],
"license": "MIT",
"author": "German Godoy",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"build": "tsc",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"clean": "rimraf dist",
"prebuild": "npm run clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yourusername/stargrad.git"
},
"bugs": {
"url": "https://github.com/yourusername/stargrad/issues"
},
"homepage": "https://github.com/yourusername/stargrad#readme",
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}