3d/package.json

37 lines
802 B
JSON

{
"name": "noeidelon",
"type": "module",
"main": "./hack/build.ts",
"scripts": {
"build": "bun $BUNFLAGS .",
"build:watch": "MINIFY=false nodemon -e ts,js,frag,vert,glsl,ply,png",
"serve": "serve ./html",
"dev": "run-p serve build:watch"
},
"devDependencies": {
"bun-types": "latest",
"npm-run-all2": "^6.1.1",
"nodemon": "^3.0.1",
"prettier": "^3.0.3"
},
"peerDependencies": {
"typescript": "^5.2.2"
},
"dependencies": {
"chalk": "^5.3.0",
"esbuild-plugin-glsl": "^1.2.2",
"gl-matrix": "^3.4.3",
"glob": "^10.3.10",
"serve": "^14.2.1",
"typescript": "^5.2.2"
},
"nodemonConfig": {
"ignore": [
"html/",
"README.md",
"src/meshes/**/*.ts"
],
"delay": 1000,
"exec": "bun run . --"
}
}