-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.56 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.56 KB
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
{
"name": "@kalwalt/webarkit-ocvt",
"version": "0.1.0",
"main": "dist/WebARKit.js",
"description": "Experimental WebARKit",
"keywords": [
"ARToolKit",
"AR",
"Augmented Reality",
"WebAR",
"JavaScript",
"WebARKit",
"markerless"
],
"author": {
"name": "Walter Perdan",
"email": "github@kalwaltart.it",
"url": "https://www.kalwaltart.com"
},
"repository": {
"type": "git",
"url": "https://github.com/kalwalt/webarkit-OCVT"
},
"homepage": "https://github.com/kalwalt/webarkit-OCVT",
"contributors": [],
"bugs": {
"url": "https://github.com/kalwalt/webarkit-OCVT/issues"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.1",
"babel-loader": "^8.2.4",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"webpack": "^5.71.0",
"webpack-cli": "^4.9.2"
},
"scripts": {
"dev-ts": "webpack --mode development --progress --watch",
"build-ts": "webpack --mode production",
"build": "node tools/makem.js; echo Built at `date`",
"build-no-libar": "node tools/makem.js --no-libar; echo Built at `date`",
"build-dev": "node tools/makem.js --no-libar; echo Built at `date` && webpack --mode development --progress --watch",
"build-all-dev": "node tools/makem.js; echo Built at `date` && webpack --mode development --progress --watch",
"watch": "./node_modules/.bin/watch 'npm run build' ./js/"
},
"license": "LGPL-3.0",
"dependencies": {
"@babel/runtime": "^7.17.8",
"axios": "^0.26.1"
}
}