-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.07 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@maptiler/ar-control",
"version": "2.1.2",
"description": "AR Control for MapTiler SDK",
"type": "module",
"homepage": "https://docs.maptiler.com/sdk-js/modules/ar/",
"exports": {
".": {
"import": "./dist/maptiler-ar-control.js",
"types": "./dist/maptiler-ar-control.d.ts"
}
},
"types": "dist/maptiler-ar-control.d.ts",
"module": "dist/maptiler-ar-control.js",
"author": "MapTiler",
"keywords": [
"maptiler",
"plugin",
"AR",
"3D",
"VR"
],
"scripts": {
"format": "prettier -c \"src/**/*.{js,ts,tsx}\"",
"lint": "eslint \"src/**/*.{js,ts}\"",
"format:fix": "prettier --write \"src/**/*.{js,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\"",
"make": "npm run format:fix && npm run lint:fix && npm run build",
"dev": "vite -c vite.config-es.ts",
"build": "npm run build-es; npm run build-umd",
"build-dev": "NODE_ENV=development npm run build-es; NODE_ENV=development npm run build-umd",
"build-umd": "tsc && vite build -c vite.config-umd.ts",
"build-es": "tsc && vite build -c vite.config-es.ts",
"build-umd-dev-watch": "tsc && NODE_ENV=development vite build -w -c vite.config-umd.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maptiler/maptiler-ar-control.git"
},
"license": "See LICENSE.md",
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^20.4.5",
"@types/three": "^0.163.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"@typescript-eslint/typescript-estree": "^7.0.2",
"eslint": "^8.44.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.28.0",
"prettier": "^2.8.8",
"typescript": "^5.0.4",
"vite": "^4.4.8",
"vite-plugin-dts": "^3.4.0"
},
"dependencies": {
"@capacitor-community/file-opener": "^1.0.5",
"@capacitor/core": "^5.7.1",
"@capacitor/filesystem": "^5.2.1",
"@google/model-viewer": "^3.5.0",
"@maptiler/sdk": "^2.1.0",
"events": "^3.3.0",
"three": "^0.163.0"
}
}