-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 3.18 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 3.18 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
{
"name": "@webarkit/jsartoolkit-nft",
"version": "1.7.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.28.5",
"@babel/plugin-transform-runtime": "7.28.5",
"@babel/preset-env": "7.28.5",
"@types/node": "^22.15.21",
"babel-loader": "10.0.0",
"prettier": "^3.6.2",
"ts-loader": "^9.5.4",
"typedoc": "0.28.14",
"typescript": "5.9.3",
"webpack": "5.102.1",
"webpack-cli": "6.0.1",
"karma": "^6.4.4",
"karma-jasmine": "^5.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"jasmine-core": "^5.1.2",
"cross-env": "^7.0.3",
"karma-webpack": "^5.0.1"
},
"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`",
"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",
"watch": "./node_modules/.bin/watch 'npm run build' ./js/",
"format-check": "prettier --check .",
"format": "prettier --write .",
"setup-docker": "docker run -dit --name emscripten-jsartoolkitnft -v $(pwd):/src emscripten/emsdk:3.1.69 bash"
},
"license": "LGPL-3.0",
"dependencies": {
"@babel/runtime": "7.28.4",
"axios": "1.13.2"
}
}