-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
35 lines (35 loc) · 968 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
34
35
{
"name": "@mml-io/3d-web-avatar",
"version": "0.19.0",
"publishConfig": {
"access": "public"
},
"main": "./build/index.js",
"types": "./build/index.d.ts",
"type": "module",
"files": [
"/build"
],
"scripts": {
"build": "tsx ./build.ts --build",
"iterate": "tsx ./build.ts --watch",
"start": "NODE_ENV=production node build/index.js 2>error.log",
"type-check": "tsc --noEmit",
"lint": "eslint \"./{src,test}/**/*.{js,jsx,ts,tsx}\" --max-warnings 0",
"lint-fix": "eslint \"./{src,test}/**/*.{js,jsx,ts,tsx}\" --fix",
"test": "NODE_OPTIONS=--experimental-vm-modules jest"
},
"dependencies": {
"@mml-io/model-loader": "0.18.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"three": "0.163.0"
},
"devDependencies": {
"@types/node": "^20.14.10",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/three": "0.163.0",
"esbuild-css-modules-plugin": "3.1.2"
}
}