-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.54 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
{
"name": "@webarkit/webarkit-cv",
"version": "0.1.1",
"description": "A nice project based on OpenCV to develop WebAR applications.",
"main": "dist/webarkitCV.js",
"types": "types/src/index.d.ts",
"devDependencies": {
"@babel/core": "^7.24.5",
"@babel/preset-env": "^7.24.5",
"@jest/globals": "^29.7.0",
"@types/uuid": "^9.0.8",
"babel-loader": "^9.1.3",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"ts-jest": "^29.1.2",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.13",
"typescript": "^4.9.5",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4",
"worker-loader": "^3.0.8"
},
"scripts": {
"build-ts": "rimraf ./dist && tsc && webpack --mode production",
"dev-ts": "rimraf ./dist && tsc && webpack --mode development --progress --watch",
"docs": "typedoc",
"test": "jest",
"format-check": "prettier --check .",
"format": "prettier --write ."
},
"author": {
"name": "Walter Perdan",
"email": "[email protected]",
"url": "https://www.kalwaltart.com"
},
"repository": {
"type": "git",
"url": "https://github.com/webarkit/webarkit-cv"
},
"homepage": "https://github.com/webarkit/webarkit-cv",
"contributors": [
"Github Contributors (https://github.com/webarkit/webarkit-cv/graphs/contributors)"
],
"bugs": {
"url": "https://github.com/webarkit/webarkit-cv/issues"
},
"license": "LGPL-3.0-or-later",
"dependencies": {
"@babel/runtime": "^7.24.5",
"ts-node": "^10.9.2",
"uuid": "^9.0.1"
}
}