-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
128 lines (128 loc) · 2.9 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
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
125
126
127
128
{
"name": "@visheratin/web-ai",
"version": "1.4.5",
"description": "Run modern deep learning models in the browser.",
"files": [
"browser/**/*.d.ts",
"browser/**/*.js",
"browser/**/*.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"
},
"./common": {
"types": "./common.d.ts",
"import": "./common.js"
},
"./image": {
"types": "./image.d.ts",
"import": "./image.js"
},
"./multimodal": {
"types": "./multimodal.d.ts",
"import": "./multimodal.js"
},
"./text": {
"types": "./text.d.ts",
"import": "./text.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run build:browser && npm run build:node",
"build:browser": "bash build-browser.sh",
"build:node": "bash build-node.sh",
"lint": "eslint \"**/*.ts*\"",
"publish": "cd build-browser && npm publish && cd ../build-node && npm publish"
},
"dependencies": {
"comlink": "4.3.1",
"localforage": "1.10.0",
"onnxruntime-common": "1.15.1",
"pako": "2.1.0"
},
"peerDependencies": {
"@visheratin/tokenizers": "0.1.5",
"@visheratin/tokenizers-node": "0.1.5",
"jimp": "0.16.2",
"node-fetch": "2.6.12",
"onnxruntime-node": "1.15.1",
"onnxruntime-web": "1.15.1"
},
"peerDependenciesMeta": {
"jimp": {
"optional": true
},
"onnxruntime-web": {
"optional": true
},
"onnxruntime-node": {
"optional": true
},
"@visheratin/tokenizers": {
"optional": true
},
"@visheratin/tokenizers-node": {
"optional": true
},
"node-fetch": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.3.3",
"@types/node-fetch": "^2.6.4",
"@types/pako": "^2.0.0",
"@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"
}