package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@babylonjs/core",
  3. "version": "7.2.3",
  4. "main": "index.js",
  5. "module": "index.js",
  6. "types": "index.d.ts",
  7. "files": [
  8. "**/*.js",
  9. "**/*.d.ts",
  10. "**/*.map",
  11. "**/*.wasm",
  12. "readme.md",
  13. "license.md",
  14. "NOTICE.md"
  15. ],
  16. "scripts": {
  17. "build": "npm run clean && npm run compile",
  18. "clean": "rimraf dist && rimraf *.tsbuildinfo && rimraf \"./**/*.!(cmd|md|json|build.json|lts.json|tasks.json|cjs)\"",
  19. "compile": "tsc -b tsconfig.build.json && tsc -b tsconfig.lts.json",
  20. "postcompile": "build-tools -c run-tasks",
  21. "watch": "node ./watcher.cjs"
  22. },
  23. "devDependencies": {
  24. "@dev/build-tools": "^1.0.0",
  25. "@lts/core": "^1.0.0"
  26. },
  27. "keywords": [
  28. "3D",
  29. "javascript",
  30. "html5",
  31. "webgl",
  32. "babylon.js"
  33. ],
  34. "license": "Apache-2.0",
  35. "esnext": "index.js",
  36. "type": "module",
  37. "sideEffects": true,
  38. "homepage": "https://www.babylonjs.com",
  39. "repository": {
  40. "type": "git",
  41. "url": "https://github.com/BabylonJS/Babylon.js.git"
  42. },
  43. "bugs": {
  44. "url": "https://github.com/BabylonJS/Babylon.js/issues"
  45. }
  46. }