bloody-engine 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +3 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bloody-engine",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A WebGL-based 2.5D graphics engine for isometric rendering",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -41,8 +41,9 @@
41
41
  "build": "npm run build:web && npm run build:node",
42
42
  "build:web": "vite build --config vite.config.web.ts",
43
43
  "build:node": "vite build --config vite.config.node.ts",
44
+ "build:demo": "vite build --config vite.config.demo.ts",
44
45
  "preview": "vite preview",
45
- "start": "npm run build:node && node dist/node/index-node.js"
46
+ "demo": "npm run build:demo && node dist/demo/index.js"
46
47
  },
47
48
  "devDependencies": {
48
49
  "@types/gl": "^6.0.5",