-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
52 lines (52 loc) · 1.34 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
{
"name": "@webarkit/arnft-threejs",
"version": "0.5.1",
"description": "The ARnft rendering engine, based on Three.js",
"main": "dist/ARnftThreejs.js",
"types": "types/index.d.ts",
"scripts": {
"dev-ts": "webpack --mode development --progress --watch",
"docs": "typedoc",
"build-ts": "webpack --mode production",
"format-check": "prettier --check .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/webarkit/ARnft-threejs.git"
},
"keywords": [
"ARnft",
"Three.js",
"Augmented-Reality",
"Image-Tracking",
"NFT",
"WebARKitLib",
"WebARKit",
"WebAR"
],
"author": "Walter Perdan",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/webarkit/ARnft-threejs/issues"
},
"homepage": "https://github.com/webarkit/ARnft-threejs#readme",
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-transform-runtime": "^7.23.4",
"@babel/preset-env": "^7.23.3",
"@types/node": "^22.8.0",
"@types/three": "^0.169.0",
"babel-loader": "^9.1.3",
"prettier": "^3.1.0",
"ts-loader": "^9.5.1",
"typedoc": "^0.26.10",
"typescript": "^5.3.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@babel/runtime": "^7.23.4",
"three": "0.169.0"
}
}