-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 913 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{
"name": "microgradts",
"version": "2.5.0",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.5.7",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"description": "A tiny Autograd engine based off of Andrej Karpathy's micrograd in Python",
"scripts": {
"start": "node ./lib/index.js",
"dev": "ts-node ./src/index.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pedrogleta/microgradts.git"
},
"author": "Pedro Gonçalves Leta",
"bugs": {
"url": "https://github.com/pedrogleta/microgradts/issues"
},
"homepage": "https://github.com/pedrogleta/microgradts#readme",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"keywords": [
"autograd",
"micrograd",
"typescript",
"ts",
"machine learning",
"ml",
"neural network",
"nn",
"deep learning",
"dl"
]
}