85 lines
2.7 KiB
JSON
85 lines
2.7 KiB
JSON
{
|
|
"name": "@needle-tools/three-mesh-ui",
|
|
"version": "7.1.5-alpha.5",
|
|
"description": "a library on top of three.js to help in creating 3D user interfaces",
|
|
"engines": {
|
|
"node": "x.x.x"
|
|
},
|
|
"main": "build/three-mesh-ui.min.js",
|
|
"module": "build/three-mesh-ui.module.js",
|
|
"types": "build/types/three-mesh-ui.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./build/three-mesh-ui.module.js"
|
|
},
|
|
"./examples/*": "./examples/*"
|
|
},
|
|
"scripts": {
|
|
"test": "karma start --single-run --browsers ChromeHeadless config/karma.conf.js",
|
|
"lint": "eslint -c config/codestyle/.eslintrc src examples",
|
|
"dts": "npx tsc",
|
|
"strip": "node config/scripts/tsc-strip-internals.js",
|
|
"tdd:test": "karma start --auto-watch --browsers ChromeHeadless config/karma.conf.js",
|
|
"tdd:build": "npx webpack --config config/webpack.config.test.js --watch",
|
|
"build": "npx webpack --config webpack.config.js",
|
|
"build-site": "npx webpack --config examples/webpack.config.js --env NODE_ENV=prod",
|
|
"start": "webpack-dev-server --config examples/webpack.config.js --open --env NODE_ENV=dev",
|
|
"heroku-postbuild": "npx webpack --config examples/webpack.prodConfig.js --env NODE_ENV=prod"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/felixmariotto/Three-Mesh-UI.git"
|
|
},
|
|
"keywords": [
|
|
"three.js",
|
|
"ui",
|
|
"user-interface",
|
|
"vr",
|
|
"ar",
|
|
"virtual reality",
|
|
"webXR"
|
|
],
|
|
"author": "felix mariotto",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/felixmariotto/Three-Mesh-UI/issues"
|
|
},
|
|
"homepage": "https://github.com/felixmariotto/Three-Mesh-UI#readme",
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.9",
|
|
"@babel/eslint-parser": "^7.17.0",
|
|
"@babel/eslint-plugin": "^7.17.7",
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@types/three": ">=0.162.0",
|
|
"acorn": "^8.7.0",
|
|
"chai": "^4.3.6",
|
|
"copy-webpack-plugin": "^10.2.4",
|
|
"eslint": "^8.13.0",
|
|
"eslint-webpack-plugin": "^3.1.1",
|
|
"file-loader": "^6.2.0",
|
|
"glob": "^8.0.3",
|
|
"html-webpack-plugin": "^5.5.0",
|
|
"karma": "^6.3.18",
|
|
"karma-chai": "^0.1.0",
|
|
"karma-chrome-launcher": "^3.1.1",
|
|
"karma-coverage-istanbul-instrumenter": "^1.0.4",
|
|
"karma-coverage-istanbul-reporter": "^3.0.3",
|
|
"karma-mocha": "^2.0.1",
|
|
"karma-mocha-reporter": "^2.2.5",
|
|
"lil-gui": "^0.17.0",
|
|
"mocha": "^9.2.2",
|
|
"typescript": "^4.6.3",
|
|
"webpack": "^5.70.0",
|
|
"webpack-cli": "^4.9.2",
|
|
"webpack-dev-server": "^4.7.4"
|
|
},
|
|
"peerDependencies": {
|
|
"three": ">=0.154.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"registry": "https://registry.npmjs.org"
|
|
}
|
|
}
|