-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 4.23 KB
/
Copy pathpackage.json
File metadata and controls
120 lines (120 loc) · 4.23 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@webarkit/jsartoolkit-nft",
"version": "1.10.1",
"main": "dist/ARToolkitNFT.js",
"types": "types/src/index.d.ts",
"exports": {
".": {
"node": {
"types": "./types/src/index_node.d.ts",
"default": "./dist/ARToolkitNFT_node.js"
},
"browser": {
"types": "./types/src/index.d.ts",
"default": "./dist/ARToolkitNFT.js"
},
"default": {
"types": "./types/src/index.d.ts",
"default": "./dist/ARToolkitNFT.js"
}
},
"./simd": {
"types": "./types/src/index_simd.d.ts",
"default": "./dist/ARToolkitNFT_simd.js"
},
"./td": {
"types": "./types/src/index_td.d.ts",
"default": "./dist/ARToolkitNFT_td.js"
},
"./node": {
"types": "./types/src/index_node.d.ts",
"default": "./dist/ARToolkitNFT_node.js"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"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": "8.0.1",
"@babel/plugin-transform-runtime": "8.0.1",
"@babel/preset-env": "8.0.2",
"@types/node": "^24.13.2",
"babel-loader": "10.1.1",
"cross-env": "^10.1.0",
"jasmine-core": "^6.3.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "^5.1.0",
"karma-webpack": "^5.0.1",
"prettier": "^3.8.3",
"ts-loader": "^9.6.2",
"typedoc": "0.28.19",
"typescript": "6.0.3",
"webpack": "5.107.2",
"webpack-cli": "7.0.3"
},
"scripts": {
"dev-ts": "webpack --mode development --progress --watch",
"docs": "typedoc",
"build-ts": "webpack --mode production",
"build": "node tools/makem.js && node -e \"console.log('Built at', new Date())\"",
"build-no-libar": "node tools/makem.js --no-libar && node -e \"console.log('Built at', new Date())\"",
"build-docker": "docker exec emscripten-jsartoolkitnft npm run build",
"build-docker-no-libar": "docker exec emscripten-jsartoolkitnft npm run build-no-libar",
"test": "npm run test:all",
"test:min": "cross-env BUILD_TARGET=artoolkitNFT.min.js karma start karma.conf.js",
"test:debug": "cross-env BUILD_TARGET=artoolkitNFT.debug.js karma start karma-debug.conf.js",
"test:wasm": "cross-env BUILD_TARGET=artoolkitNFT_wasm.js karma start karma.conf.js",
"test:simd": "cross-env BUILD_TARGET=artoolkitNFT_wasm.simd.js karma start karma.conf.js",
"test:embed-es6": "karma start karma-embed-es6.conf.js",
"test:es6": "cross-env BUILD_TARGET_ES6=artoolkitNFT_ES6_wasm.js karma start karma-es6.conf.js",
"test:es6-simd": "cross-env BUILD_TARGET_ES6=artoolkitNFT_ES6_wasm.simd.js karma start karma-es6.conf.js",
"test:all": "npm run test:min && npm run test:debug && npm run test:wasm && npm run test:simd && npm run test:embed-es6 && npm run test:es6 && npm run test:es6-simd",
"test-node-example": "cd examples/node && node example_dist.js",
"build-python-bindings": "cd python-bindings && python setup.py build_ext --inplace",
"python-tests": "cd python-bindings && pytest test_arcontrollerNFT.py",
"watch": "./node_modules/.bin/watch 'npm run build' ./js/",
"format-check": "prettier --check .",
"format": "prettier --write .",
"setup-docker": "node tools/docker-setup.js"
},
"license": "LGPL-3.0",
"dependencies": {
"@babel/runtime": "8.0.0",
"axios": "1.18.0",
"canvas": "^3.2.3",
"sharp": "^0.35.2"
}
}