Add initial files
Some checks failed
Publish / publish (push) Failing after 11s
Lint / lint (push) Failing after 8s

This commit is contained in:
Julien Valverdé
2025-12-28 14:30:54 +01:00
commit b736140b48
18 changed files with 549 additions and 0 deletions

View File

@@ -0,0 +1,44 @@
{
"name": "react-godot-renderer",
"description": "",
"version": "0.1.0",
"type": "module",
"files": [
"./README.md",
"./dist"
],
"license": "MIT",
"repository": {
"url": "git+https://github.com/Thiladev/react-godot-renderer.git"
},
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./*": [
{
"types": "./dist/*/index.d.ts",
"default": "./dist/*/index.js"
},
{
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
]
},
"scripts": {
"build": "tsc",
"lint:tsc": "tsc --noEmit",
"lint:biome": "biome lint",
"pack": "npm pack",
"clean:cache": "rm -rf .turbo tsconfig.tsbuildinfo",
"clean:dist": "rm -rf dist",
"clean:modules": "rm -rf node_modules"
},
"peerDependencies": {
"@types/react": "^19.2.0",
"react": "^19.2.0"
}
}