-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.29 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
{
"name": "tensornet",
"version": "1.0.21",
"description": "a pure js convert a base64 to a tensor object for node",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"prepare": "tsc --build && cp -R types/ ./dist",
"lint": "eslint --ext .ts src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/A11yWatch/tensornet.git"
},
"keywords": [
"tensorflow"
],
"author": "Jeff Mendez",
"license": "MIT",
"bugs": {
"url": "https://github.com/A11yWatch/tensornet/issues"
},
"homepage": "https://github.com/A11yWatch/tensornet#readme",
"dependencies": {
"base64-to-tensor": "^1.2.16"
},
"devDependencies": {
"@swc/core": "^1.2.204",
"@swc/jest": "^0.2.21",
"@tensorflow/tfjs-backend-wasm": "^4.9.0",
"@tensorflow/tfjs-core": "^4.9.0",
"@tensorflow/tfjs-converter": "^4.9.0",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"isomorphic-unfetch": "^3.1.0",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"jpeg-js": "^0.4.4",
"sharp": "^0.32.4",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.6"
},
"peerDependencies": {
"@tensorflow/tfjs-core": "*",
"@tensorflow/tfjs-converter": "*"
}
}