-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.07 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.07 KB
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
{
"name": "@mml-io/mml-web-threejs-standalone",
"version": "0.26.1",
"repository": {
"type": "git",
"url": "https://github.com/mml-io/mml.git",
"directory": "packages/mml-web-threejs-standalone"
},
"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": "vitest run",
"test-iterate": "vitest"
},
"dependencies": {
"@mml-io/mml-web": "^0.26.1",
"@mml-io/mml-web-threejs": "^0.26.1"
},
"peerDependencies": {
"three": "*"
},
"devDependencies": {
"@types/three": "0.182.0",
"jsdom": "27.4.0",
"resize-observer-polyfill": "1.5.1",
"three": "0.182.0",
"vitest-canvas-mock": "1.1.3"
},
"babel": {
"presets": [
"@babel/preset-typescript"
]
}
}