-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.25 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
{
"name": "@webarkit/jsfeat-next",
"version": "0.7.3",
"description": "Typescript version of jsfeat for WebARKit",
"main": "dist/jsfeatNext.js",
"types": "types/src/index.d.ts",
"scripts": {
"build-ts": "rimraf ./build && tsc && webpack --mode production",
"dev-ts": "rimraf ./build && tsc && webpack --mode development --progress --watch",
"format-check": "prettier --check .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/webarkit/jsfeatNext.git"
},
"keywords": [
"jsfeat",
"jsfeatNext",
"WebAR",
"WebARKit",
"AugmentedReality",
"computer",
"vision"
],
"author": "Walter Perdan @kalwalt",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/webarkit/jsfeatNext/issues"
},
"homepage": "https://github.com/webarkit/jsfeatNext#readme",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.2",
"rimraf": "^4.1.3",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@babel/runtime": "^7.20.1",
"prettier": "^2.8.4",
"ts-loader": "^9.4.2"
}
}