camera-2d-simple
Version:
2D camera for WebGL
59 lines (58 loc) • 1.5 kB
JSON
{
"name": "camera-2d-simple",
"version": "3.0.0",
"description": "2D camera for WebGL",
"author": "Fritz Lekschas",
"keywords": [
"2d",
"camera",
"webgl"
],
"license": "MIT",
"main": "dist/camera-2d.js",
"module": "dist/camera-2d.esm.js",
"unpkg": "dist/camera-2d.min.js",
"jsdelivr": "dist/camera-2d.min.js",
"files": [
"dist"
],
"dependencies": {
"gl-matrix": "~3.3.0"
},
"peerDependencies": {
"gl-matrix": "~3.3.0"
},
"devDependencies": {
"@rollup/plugin-buble": "^0.21.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^v8.3.0",
"esm": "^3.2.25",
"husky": "^4.2.1",
"prettier": "^2.3.2",
"pretty-quick": "^3.1.1",
"rollup": "^2.55.1",
"rollup-plugin-filesize": "^9.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^5.5.2",
"tap-spec": "^5.0.0",
"zora": "^4.1.0"
},
"scripts": {
"build": "rollup -c",
"lint": "eslint src tests rollup.config.js",
"precommit": "pretty-quick --staged; npm run test",
"prepublishOnly": "npm run lint",
"prerelease": "rm -rf dist/*; npm run build; zip -r dist.zip dist",
"pretest": "npm run lint",
"test": "node -r esm tests/index.js | tap-spec",
"watch": "rollup -cw"
},
"homepage": "https://github.com/flekschas/camera-2d",
"repository": {
"type": "git",
"url": "git://github.com/flekschas/camera-2d.git"
},
"bugs": {
"url": "https://github.com/flekschas/camera-2d/issues"
}
}