forked from webarkit/jsartoolkitNFT
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.11 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.11 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@webarkit/jsartoolkit-nft",
"version": "1.1.6",
"main": "dist/ARToolkitNFT.js",
"types": "types/src/index.d.ts",
"description": "Emscripten port of ARToolKit5 to JavaScript. It is a lighter version of Jsartoolkit5 with only NFT markerless support",
"keywords": [
"ARToolKit",
"AR",
"Augmented Reality",
"WebAR",
"JavaScript",
"jsartoolkit",
"jsartoolkit5",
"jsartoolkitNFT",
"NFT",
"markerless"
],
"author": {
"name": "Walter Perdan",
"email": "github@kalwaltart.it",
"url": "https://www.kalwaltart.com"
},
"repository": {
"type": "git",
"url": "https://github.com/webarkit/jsartoolkitNFT"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://github.com/webarkit/jsartoolkitNFT",
"contributors": [
"Github Contributors (https://github.com/webarkit/jsartoolkitNFT/graphs/contributors)"
],
"bugs": {
"url": "https://github.com/webarkit/jsartoolkitNFT/issues"
},
"devDependencies": {
"@babel/core": "^7.20.2",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-qunit": "^4.1.2",
"prettier": "^2.7.1",
"qunit": "^2.19.3",
"ts-loader": "^9.4.1",
"typedoc": "^0.23.20",
"typescript": "^4.8.4",
"webpack": "^5.75.0",
"webpack-cli": "^4.10.0"
},
"scripts": {
"dev-ts": "webpack --mode development --progress --watch",
"docs": "typedoc",
"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`",
"test-browser": "karma start --browsers Chrome,Firefox,ChromeHeadless,FirefoxHeadless",
"test": "karma start",
"watch": "./node_modules/.bin/watch 'npm run build' ./js/",
"format-check": "prettier --check .",
"format": "prettier --write ."
},
"license": "LGPL-3.0",
"dependencies": {
"@babel/runtime": "^7.20.1",
"axios": "^1.1.3"
}
}