forked from visheratin/web-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.node.json
124 lines (124 loc) · 2.72 KB
/
package.node.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@visheratin/web-ai-node",
"version": "1.3.0",
"description": "Run modern deep learning models in Node.js.",
"files": [
"node/**/*.d.ts",
"node/**/*.js",
"node/**/*.js.map",
"common/**/*.d.ts",
"common/**/*.js",
"common/**/*.js.map",
"image/**/*.d.ts",
"image/**/*.js",
"image/**/*.js.map",
"multimodal/**/*.d.ts",
"multimodal/**/*.js",
"multimodal/**/*.js.map",
"text/**/*.d.ts",
"text/**/*.js",
"text/**/*.js.map",
"common.js",
"common.js.map",
"common.d.ts",
"image.js",
"image.js.map",
"image.d.ts",
"index.js",
"index.js.map",
"index.d.ts",
"multimodal.js",
"multimodal.js.map",
"multimodal.d.ts",
"text.js",
"text.js.map",
"text.d.ts"
],
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js",
"require": "./index.js"
},
"./common": {
"types": "./common.d.ts",
"import": "./common.js",
"require": "./common.js"
},
"./image": {
"types": "./image.d.ts",
"import": "./image.js",
"require": "./image.js"
},
"./multimodal": {
"types": "./multimodal.d.ts",
"import": "./multimodal.js",
"require": "./multimodal.js"
},
"./text": {
"types": "./text.d.ts",
"import": "./text.js",
"require": "./text.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "bash build.sh",
"lint": "eslint \"**/*.ts*\""
},
"dependencies": {
"onnxruntime-common": "1.15.1",
"comlink": "4.3.1",
"localforage": "1.10.0",
"pako": "2.1.0"
},
"peerDependencies": {
"jimp": "^0.16.2",
"onnxruntime-web": "1.15.1",
"onnxruntime-node": "1.15.1",
"@visheratin/tokenizers": "0.1.5",
"@visheratin/tokenizers-node": "0.1.5"
},
"peerDependenciesMeta": {
"jimp": {
"optional": true
},
"onnxruntime-web": {
"optional": true
},
"onnxruntime-node": {
"optional": true
},
"@visheratin/tokenizers": {
"optional": true
},
"@visheratin/tokenizers-node": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.3.3",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"prettier": "^2.8.0",
"typescript": "^5.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/visheratin/web-ai.git"
},
"keywords": [
"deep-learning",
"AI",
"NLP",
"CV",
"computer-vision"
],
"author": "Alexander Visheratin",
"license": "MIT",
"bugs": {
"url": "https://github.com/visheratin/web-ai/issues"
},
"homepage": "https://github.com/visheratin/web-ai#readme"
}