Files
engine/packages/loader/package.json
2022-11-01 18:57:02 +08:00

27 lines
582 B
JSON

{
"name": "@oasis-engine/loader",
"version": "0.9.0-beta.0",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"license": "MIT",
"types": "types/index.d.ts",
"scripts": {
"b:types": "tsc"
},
"main": "dist/main.js",
"module": "dist/module.js",
"debug": "src/index.ts",
"files": [
"dist/**/*",
"types/**/*"
],
"dependencies": {
"@oasis-engine/core": "workspace:*",
"@oasis-engine/draco": "workspace:*",
"@oasis-engine/math": "workspace:*",
"@oasis-engine/rhi-webgl": "workspace:*"
}
}