{
  "name": "three-geometry-hellfix",
  "version": "1.1.0",
  "description": "A backport for the THREE.Geometry that went missing since r125. Name: Gmetry.",
  "main": "src/cjs/index.js",
  "module": "src/esm/index.js",
  "types": "src/cjs/index.d.ts",
  "scripts": {
    "test": "./node_modules/mocha/bin/mocha test.js --reporter spec",
    "build": "npm run compile && npm run webpack",
    "compile": "npm run compile:cjs && npm run compile:esm",
    "compile:cjs": "tsc -p tsconfig.json --target es5 --module commonjs --outDir src/cjs/",
    "compile:esm": "tsc -p tsconfig.json --target ES2015 --module ESNext --outdir src/esm/ --moduleResolution node",
    "server": "npx http-server",
    "webpack": "npm run webpack:dev && npm run webpack:prod",
    "webpack:dev": "npx webpack --env=development --config webpack.config.js",
    "webpack:prod": "npx webpack --env=production --config webpack.config.js",
    "copy_slice_lib": "cp -R ../threejs-slice-geometry-typescript/dist example/threejs-slice-geometry-typescript/"
  },
  "author": "Ikaros Kappler",
  "license": "MIT",
  "dependencies": {
    "@types/three": "^0.137.0",
    "repeat-string": "^1.6.1",
    "typescript": "^4.4.3"
  },
  "devDependencies": {
    "mocha": "^9.1.2",
    "terser-webpack-plugin": "^5.2.4",
    "threejs-slice-geometry-typescript": "^0.2.2",
    "webpack": "^5.54.0",
    "webpack-cli": "^4.8.0"
  }
}
