-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "@ar-js-org/ar.js-threejs",
"version": "0.3.2",
"description": "AR.js (THREEx, ARjs) modular package - Typescript version",
"main": "dist/ar.js",
"module": "dist/ar.mjs",
"types": "types/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev-ts": "webpack --mode development --progress --watch",
"build-ts": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalwalt/AR.js-threex.git"
},
"keywords": [
"AR.js",
"Three.js",
"ARToolkit",
"typescript"
],
"author": "Walter Perdan",
"license": "MIT",
"bugs": {
"url": "https://github.com/kalwalt/AR.js-threex/issues"
},
"homepage": "https://github.com/kalwalt/AR.js-threex#readme",
"devDependencies": {
"@types/node": "^18.15.11",
"@types/three": "^0.164.0",
"ts-loader": "^9.5.2",
"typescript": "^5.4.3",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1",
"worker-loader": "^3.0.8"
},
"dependencies": {
"@ar-js-org/artoolkit5-js": "^0.3.1",
"three": "^0.164.0"
}
}