qapp-core/package.json
2025-03-17 20:43:34 +02:00

52 lines
1.1 KiB
JSON

{
"name": "qapp-core",
"version": "1.0.7",
"description": "Qortal's core React library with global state, UI components, and utilities",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts",
"prepare": "npm run build",
"clean": "rm -rf dist"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.7",
"@mui/material": "^6.4.7",
"@tanstack/react-virtual": "^3.13.2",
"@types/react": "^19.0.10",
"buffer": "^6.0.3",
"react": "^19.0.0",
"react-intersection-observer": "^9.16.0",
"zustand": "^4.3.2"
},
"devDependencies": {
"tsup": "^8.4.0",
"typescript": "^5.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Qortal/qapp-core.git"
},
"keywords": [
"qortal",
"react",
"zustand",
"global state",
"qapp"
],
"author": "Your Name",
"license": "MIT"
}