-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "webai-js",
"version": "3.0.0",
"type": "module",
"description": "A simple Web AI model deployment tool using JavaScript",
"main": "./src/webai.mjs",
"types": "./src/webai.d.ts",
"unpkg": "./dist/webai.min.mjs",
"jsdelivr": "./dist/webai.min.mjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:doc": "jsdoc -c jsdoc.json",
"build:opencv": "node opencv2esm.js",
"build:html": "vite build --config vite.config.html.js",
"preview": "vite preview --config vite.config.html.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AgentMaker/WebAI.js.git"
},
"keywords": [
"WebAI.js",
"ONNX",
"AI"
],
"author": "jm12138",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AgentMaker/WebAI.js/issues"
},
"homepage": "https://github.com/AgentMaker/WebAI.js#readme",
"devDependencies": {
"jsdoc": "^4.0.3",
"prettier": "^3.3.2",
"vite": "^5.3.1",
"yamljs": "^0.3.0"
},
"dependencies": {}
}