-
Notifications
You must be signed in to change notification settings - Fork 928
/
package.json
69 lines (69 loc) · 1.69 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@ar-js-org/ar.js",
"version": "3.4.5",
"description": "Efficient Augmented Reality for the Web",
"main": "./aframe/build/aframe-ar.js",
"scripts": {
"format-check": "prettier --check .",
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "./node_modules/.bin/webpack --mode=production",
"build:dev": "./node_modules/.bin/webpack --mode=development --progress --watch",
"server": "npx http-server -c -1",
"prepare": "husky install"
},
"files": [
"three.js/build",
"aframe/build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AR-js-org/AR.js.git"
},
"keywords": [
"AR.js",
"artoolkit5-js",
"AR",
"VR",
"three.js",
"aframe",
"augmented reality",
"location based",
"image tracking",
"marker based"
],
"author": "jeromeetienne@gmail.com",
"contributors": [
{
"name": "Nicolò Carpignoli",
"email": "nicolocarpignoli@gmail.com",
"url": "https://nicolocarpignoli.github.io/me"
},
{
"name": "Walter Perdan",
"email": "info@walterperdan.com",
"url": "https://www.walterperdan.com/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/AR-js-org/AR.js/issues"
},
"homepage": "https://github.com/AR-js-org/AR.js/",
"devDependencies": {
"husky": "^8.0.3",
"lint-staged": "^13.2.0",
"prettier": "^2.8.7",
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@ar-js-org/artoolkit5-js": "^0.3.0",
"aframe": "^1.3.0",
"three": "^0.150.0"
},
"lint-staged": {
"*.js": "prettier --write"
}
}