UNPKG

mlightcad

Version:

A highly customizable standalone view cube addon for three.js

57 lines 1.54 kB
{ "name": "mlightcad", "version": "0.0.1", "description": "A highly customizable standalone view cube addon for three.js", "license": "MIT", "author": "MLight Lee <mlight.lee@outlook.com>", "repository": { "type": "git", "url": "git://github.com/mlight-lee/three-viewcube" }, "keywords": [ "viewcube", "axes", "three", "three.js", "cad", "mlight", "mlightcad" ], "engines": { "pnpm": ">=8" }, "private": false, "devDependencies": { "@changesets/cli": "^2.27.7", "@nx/js": "19.3.1", "@types/node": "^20.14.9", "@typescript-eslint/eslint-plugin": "^7.14.1", "@typescript-eslint/parser": "^7.14.1", "eslint": "^8.56.0", "eslint-plugin-prettier": "^5.1.3", "eslint-plugin-simple-import-sort": "^12.1.0", "lint-staged": "^15.2.7", "nx": "19.3.1", "prettier": "^3.3.2", "rimraf": "^6.0.1", "typescript": "^5.5.2", "vite": "^5.2.10" }, "lint-staged": { "*.{ts,js,vue}": [ "prettier --config ./.prettierrc.js --write", "eslint --config ./.eslintrc.js --fix --quiet" ], "*.md": [ "prettier --config ./.prettierrc.js --write" ] }, "scripts": { "dev": "nx run @mlightcad/three-viewcube-demo:dev", "format": "prettier --config ./.prettierrc.js --write packages/**/*.{ts,js,vue,json}", "clean": "nx run-many -t clean", "build": "nx run-many -t build", "lint": "nx run-many -t lint", "lint:fix": "eslint -c ./.eslintrc.js --ext .ts,.js,.vue --fix --quiet packages/" } }