-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
41 lines (41 loc) · 1.27 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
{
"name": "speedy-vision",
"version": "0.9.1-wip",
"description": "GPU-accelerated Computer Vision for JavaScript",
"author": "Alexandre Martins <[email protected]> (https://github.com/alemart)",
"homepage": "https://github.com/alemart/speedy-vision",
"license": "Apache-2.0",
"main": "dist/speedy-vision.js",
"types": "types/main.d.ts",
"scripts": {
"start": "webpack-dev-server --mode development --env PORT=8080",
"build": "npm run clean && webpack --mode production && webpack --mode production --env minimize=1 && npm run build-types",
"build-dev": "npm run clean && webpack --mode development && npm run build-types",
"build-types": "tsc",
"make": "cd src/core/wasm; make; cd ..",
"clean": "rm -rf dist/*"
},
"repository": {
"type": "git",
"url": "https://github.com/alemart/speedy-vision.git"
},
"funding": "https://github.com/sponsors/alemart",
"keywords": [
"computer vision",
"machine vision",
"image processing",
"linear algebra",
"keypoint",
"opencv",
"gpgpu"
],
"devDependencies": {
"eslint": "^7.16.0",
"terser-webpack-plugin": "^5.2.5",
"typescript": "^4.4.4",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
},
"dependencies": {}
}