-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
50 lines (50 loc) · 1.12 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": "aruco-marker",
"version": "3.0.0",
"description": "Library for generating Aruco marker images",
"type": "module",
"source": [
"src/aruco-marker.ts",
"src/element.ts"
],
"exports": {
".": {
"types": "./dist/aruco-marker.d.ts",
"default": "./dist/aruco-marker.modern.js"
},
"./element": {
"types": "./dist/element.d.ts",
"default": "./dist/element.modern.js"
}
},
"main": "./dist/aruco-marker.cjs",
"module": "./dist/aruco-marker.module.js",
"unpkg": "./dist/element.umd.js",
"types": "./dist/aruco-marker.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"demo": "npm build && node demos/demo-server.js",
"test": "ts-node-test src/aruco-marker.test.ts",
"pretty": "prettier --write \"src/**/*.{js,ts,tsx,scss,css,html}\""
},
"keywords": [
"aruco",
"image",
"augmented reality"
],
"files": [
"./dist/*"
],
"repository": {
"type": "git",
"url": "[email protected]:bhollis/aruco-marker.git"
},
"author": "Benjamin Hollis",
"license": "MIT",
"devDependencies": {
"microbundle": "^0.15.1",
"prettier": "^3.0.1",
"ts-node-test": "^0.4.2"
}
}