package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "@gltf-transform/extensions",
  3. "version": "4.4.2",
  4. "repository": "github:donmccurdy/glTF-Transform",
  5. "homepage": "https://gltf-transform.dev/extensions.html",
  6. "description": "Adds extension support to @gltf-transform/core",
  7. "author": "Don McCurdy <dm@donmccurdy.com>",
  8. "license": "MIT",
  9. "funding": "https://github.com/sponsors/donmccurdy",
  10. "type": "module",
  11. "sideEffects": false,
  12. "main": "./dist/index.cjs",
  13. "module": "./dist/index.js",
  14. "types": "./dist/index.d.ts",
  15. "exports": {
  16. "require": {
  17. "types": "./dist/index.d.cts",
  18. "default": "./dist/index.cjs"
  19. },
  20. "default": {
  21. "types": "./dist/index.d.ts",
  22. "default": "./dist/index.js"
  23. }
  24. },
  25. "scripts": {
  26. "build": "tsdown --env.PACKAGE_VERSION=$npm_package_version",
  27. "build:watch": "tsdown --watch --env.PACKAGE_VERSION=$npm_package_version"
  28. },
  29. "keywords": [
  30. "gltf",
  31. "3d",
  32. "model",
  33. "webgl",
  34. "threejs"
  35. ],
  36. "dependencies": {
  37. "@gltf-transform/core": "^4.4.2",
  38. "ktx-parse": "^1.1.0"
  39. },
  40. "files": [
  41. "dist/",
  42. "src/",
  43. "README.md",
  44. "LICENSE.md"
  45. ],
  46. "gitHead": "dd665ec2862382df7f4fa9c9f0db9bb593326d62"
  47. }