{
  "name": "webgpu-torch",
  "version": "0.3.5",
  "description": "Tensor computation and autograd with WebGPU acceleration",
  "browser": "index.js",
  "scripts": {
    "build": "rm -rf dist/* && rm -rf web/dist && ts-node ./scripts/codegen.ts && ts-node ./scripts/plotgen.ts && tsc && webpack --config webpack.config.js --mode production && cp -a dist ./web/ && cp package.json README.md LICENSE ./dist/ && npx typedoc --out web/docs src/index.ts",
    "test": "jest",
    "start": "webpack-dev-server --open",
    "build-tests": "ts-node ./scripts/testgen.ts && webpack --config webpack.config.tests.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/praeclarum/webgpu-torch.git"
  },
  "keywords": [
    "torch",
    "nn",
    "webgpu",
    "ai",
    "machine learning",
    "deep learning",
    "neural networks",
    "autograd",
    "gpu",
    "acceleration"
  ],
  "author": "Frank A. Krueger",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/praeclarum/webgpu-torch/issues"
  },
  "homepage": "https://praeclarum.org/webgpu-torch",
  "devDependencies": {
    "@types/jest": "^29.5.1",
    "jest": "^29.5.0",
    "jest-environment-jsdom": "^29.5.0",
    "madge": "^6.0.0",
    "prettier": "2.8.8",
    "ts-jest": "^29.1.0",
    "ts-loader": "^9.4.2",
    "ts-node": "^10.9.1",
    "typedoc": "^0.24.6",
    "typescript": "^5.0.4",
    "webpack": "^5.81.0",
    "webpack-cli": "^5.0.2",
    "webpack-dev-server": "^4.13.3"
  },
  "dependencies": {
    "@webgpu/types": "^0.1.31"
  }
}
