-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
82 lines (82 loc) · 2.05 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "js-pytorch",
"version": "0.7.2",
"description": "A JavaScript library like PyTorch, built from scratch.",
"type": "module",
"directories": {
"test": "tests"
},
"exports": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "pkgroll && copyfiles -u 1 ./dist/*.mjs",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"lint": "eslint . --ext .ts",
"watch": "pkgroll --watch",
"prepack": "npm run build",
"test": "jest",
"bench": "tsx tests/benchmarks/runBenchmarks.ts",
"bench:update": "tsx tests/benchmarks/runBenchmarks.ts --save"
},
"release": {
"branches": [
"main"
]
},
"publishConfig": {
"access": "public"
},
"keywords": [
"deep-learning",
"machine-learning",
"PyTorch"
],
"repository": {
"type": "git",
"url": "https://github.com/eduardoleao052/js-torch.git"
},
"author": "Eduardo Leitao da Cunha Opice Leao",
"license": "MIT",
"bugs": {
"url": "https://github.com/eduardoleao052/js-torch/issues"
},
"homepage": "https://github.com/eduardoleao052/js-torch#readme",
"dependencies": {
"@eduardoleao052/gpu": "2.19.0"
},
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.24.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"babel-jest": "^29.7.0",
"copyfiles": "^2.4.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"pkgroll": "^2.0.2",
"prettier": "^3.2.5",
"tinybench": "^2.6.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.4.3"
}
}