-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
24 lines (24 loc) · 943 Bytes
/
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
{
"name": "markerlessarjs",
"version": "0.2.0",
"description": "Markerless AR based on https://github.com/ahmetozlu/augmented_reality and https://github.com/MasteringOpenCV/code This is a project to port the original code to javascript using emscripten. These are the classes ported to JavaScript: - CameraCalibration - ARPipeline - Transformation - and other useful functions...",
"main": "dist/markerlessAR.js",
"scripts": {
"dev-es6": "rimraf ./dist && webpack --mode development --progress --watch",
"build-es6": "rimraf ./dist && webpack --mode production"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.23.7",
"babel-loader": "^9.1.3",
"rimraf": "^5.0.5",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"author": "kalwalt",
"license": "LGPL-3.0",
"dependencies": {
"@babel/runtime": "^7.23.7"
}
}