-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.3 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
{
"name": "@ar-js-org/artoolkitplus-ts",
"version": "0.3.2",
"description": "Typescript ARToolKitPlus port thanks to Emscripten",
"main": "dist/ARToolKitPlus.js",
"types": "types/src/index.d.ts",
"directories": {
"example": "example"
},
"scripts": {
"dev-ts": "webpack --mode development --progress --watch",
"build-ts": "webpack --mode production",
"test": "echo \"Error: no test specified\" && exit 1",
"format-check": "prettier --check .",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/kalwalt/artoolkitplus-ts.git"
},
"keywords": [
"ARToolKitPlus",
"ARToolKit",
"Typescript",
"Emscripten",
"WebAR",
"AugmentedReality"
],
"author": "Walter Perdan",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/kalwalt/artoolkitplus-ts/issues"
},
"homepage": "https://github.com/kalwalt/artoolkitplus-ts#readme",
"devDependencies": {
"webpack": "^5.77.0",
"webpack-cli": "^5.0.1",
"babel-loader": "^9.1.2",
"rimraf": "^4.4.1",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"typescript": "^5.0.3",
"ts-loader": "^9.4.2",
"prettier": "^2.8.7"
},
"dependencies": {
"@babel/runtime": "^7.21.0",
"axios": "^1.3.4"
}
}