-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
33 lines (33 loc) · 952 Bytes
/
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
{
"name": "@mml-io/mml-viewer",
"version": "0.19.3",
"private": true,
"publishConfig": {
"access": "public"
},
"files": [
"/build"
],
"type": "module",
"main": "build/index.js",
"scripts": {
"type-check": "tsc --noEmit",
"build": "tsx ./build.ts --build",
"iterate": "cross-env PORT=28893 tsx ./build.ts --serve",
"lint": "eslint \"./**/*.{js,jsx,ts,tsx}\" --max-warnings 0",
"lint-fix": "eslint \"./**/*.{js,jsx,ts,tsx}\" --fix",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test-iterate": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --watch"
},
"dependencies": {
"@mml-io/mml-web": "^0.19.3",
"@mml-io/mml-web-playcanvas-standalone": "^0.19.3",
"@mml-io/mml-web-threejs-standalone": "^0.19.3",
"@monogrid/gainmap-js": "3.0.6",
"playcanvas": "1.73.5",
"three": "0.163.0"
},
"devDependencies": {
"@types/three": "0.163.0"
}
}