21 lines
1016 B
JSON
21 lines
1016 B
JSON
{
|
|
"name": "generate-gltf-classes",
|
|
"version": "1.0.0",
|
|
"description": "Generate CesiumGltf C++ classes from the glTF spec.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "node index.js --schema https://raw.githubusercontent.com/kring/glTF/metadata-schema-cleanup/specification/2.0/schema/ --output test_output/model --readerOutput test_output/reader --extensions https://raw.githubusercontent.com/kring/glTF/metadata-schema-cleanup/extensions/2.0/ --config glTF.json",
|
|
"generate": "node index.js --schema https://raw.githubusercontent.com/kring/glTF/metadata-schema-cleanup/specification/2.0/schema/ --output ../../CesiumGltf --readerOutput ../../CesiumGltfReader --extensions https://raw.githubusercontent.com/kring/glTF/metadata-schema-cleanup/extensions/2.0/ --config glTF.json"
|
|
},
|
|
"author": "CesiumGS, Inc.",
|
|
"license": "UNLICENSED",
|
|
"dependencies": {
|
|
"lodash": "^4.17.20",
|
|
"sync-request": "^6.1.0",
|
|
"yargs": "^16.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^2.2.1"
|
|
}
|
|
}
|