forked from alemart/speedy-vision
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "speedy-vision",
"version": "0.9.1",
"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",
"gpu",
"glsl",
"webgl",
"webgl2",
"wasm"
],
"devDependencies": {
"@babel/plugin-transform-named-capturing-groups-regex": "^7.24.7",
"@babel/plugin-transform-object-rest-spread": "^7.24.7",
"babel-loader": "^9.1.3",
"eslint": "^7.16.0",
"terser-webpack-plugin": "^5.2.5",
"typescript": "^4.4.4",
"webpack": "^5.92.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}