-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
42 lines (42 loc) · 1.09 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
{
"name": "@mml-io/mml-web-playcanvas-standalone",
"version": "0.19.5",
"publishConfig": {
"access": "public"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"type": "module",
"files": [
"/build"
],
"scripts": {
"type-check": "tsc --noEmit",
"build": "tsx ./build.ts --build",
"iterate": "tsx ./build.ts --watch",
"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.5",
"@mml-io/mml-web-playcanvas": "^0.19.5"
},
"peerDependencies": {
"playcanvas": "*"
},
"devDependencies": {
"jest-canvas-mock": "2.5.2",
"jest-environment-jsdom": "29.7.0",
"jest-expect-message": "1.1.3",
"jest-fetch-mock": "3.0.3",
"playcanvas": "1.73.5",
"resize-observer-polyfill": "1.5.1"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
}
}