initial commit

This commit is contained in:
equippedcoding-master
2025-09-17 09:37:06 -05:00
parent 86108ca47e
commit e2c98790b2
55389 changed files with 6206730 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{
"name": "pcui-react",
"version": "1.0.0",
"author": "PlayCanvas <support@playcanvas.com>",
"homepage": "https://playcanvas.github.io/pcui",
"description": "PCUI components for react",
"private": true,
"main": "dist/module/src/index.mjs",
"types": "types/index.d.ts",
"license": "MIT",
"bugs": {
"url": "https://github.com/playcanvas/pcui/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/playcanvas/pcui.git"
}
}

View File

@@ -0,0 +1,19 @@
{
"compilerOptions": {
"noImplicitAny": true,
"allowJs": true,
"target": "es6",
"jsx": "react",
"types": ["react", "react-dom", "webxr"],
"lib": [
"es2019",
"dom",
"dom.iterable"
],
"esModuleInterop": true,
"sourceMap": true,
"moduleResolution": "node"
},
"include": ["../src/index.tsx"],
"exclude": ["node_modules/**/*", "node_modules"]
}