1
0
Fork 0
mirror of https://github.com/imjasonh/dodec synced 2026-07-07 01:32:17 +00:00
dodec/package-lock.json
Jason Hall 3cb854a42a
Implement proper snub dodecahedron with exact geometry
- Add exact vertex and face data from polyhedra npm package
- Fix rendering to show 12 pentagons and 80 triangles correctly
- Remove edge visibility (wireframe opacity = 0)
- Increase lighting brightness (ambient: 1.8)
- Fix transparency issues by setting transparent: false
- Add CLAUDE.md documentation

The snub dodecahedron now renders with mathematically accurate
geometry and proper face structure as requested.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-10 00:13:11 -04:00

47 lines
1.4 KiB
JSON

{
"name": "snub-dodecahedron-game",
"version": "1.0.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "snub-dodecahedron-game",
"version": "1.0.0",
"license": "MIT",
"dependencies": {
"polyhedra": "^1.0.0"
},
"devDependencies": {
"@types/three": "^0.128.0",
"typescript": "^5.0.0"
}
},
"node_modules/@types/three": {
"version": "0.128.0",
"resolved": "https://registry.npmjs.org/@types/three/-/three-0.128.0.tgz",
"integrity": "sha512-Jwq5XYUkzAcPTo34hlGAQGUyAI0b2F3aCCFWG/v7ZhJBEG5HGcusMSr70GhDlT8Gs0f02QnSPZ2RCA1MrCOa/w==",
"dev": true,
"license": "MIT"
},
"node_modules/polyhedra": {
"version": "1.0.0",
"resolved": "https://registry.npmjs.org/polyhedra/-/polyhedra-1.0.0.tgz",
"integrity": "sha512-vqopsUenyS6RXMIizD+EtqGHTFS1mB5vGL5prcBZebVip6ofZ5eK184RnBOFPkpa7pGRVfAFnEPW+aD/+FbO0Q==",
"license": "SEE LICENSE IN copyright.txt"
},
"node_modules/typescript": {
"version": "5.8.3",
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.8.3.tgz",
"integrity": "sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==",
"dev": true,
"license": "Apache-2.0",
"bin": {
"tsc": "bin/tsc",
"tsserver": "bin/tsserver"
},
"engines": {
"node": ">=14.17"
}
}
}
}