radiantkit 0.0.1

Framework to build graphic applications
Documentation
{
  "name": "@radiantkit/react",
  "version": "0.0.1",
  "description": "",
  "main": "./lib/cjs/index.js",
  "module": "./lib/esm/index.js",
  "types": "./lib/types/index.d.ts",
  "exports": {
    "import": "./lib/esm/index.js",
    "require": "./lib/cjs/index.js"
  },
  "scripts": {
    "clean": "rm -rf lib",
    "generate-version": "node ./prebuild.js",
    "lint": "eslint \"{src,test}/**/*.ts\" --fix",
    "build": "yarn generate-version && yarn clean && yarn build:cjs; yarn build:esm",
    "build:cjs": "tsc --project tsconfig.cjs.json && tsc-alias --project tsconfig.cjs.json --verbose",
    "build:cjs:watch": "concurrently \"tsc --project tsconfig.cjs.json --watch\" \"tsc-alias --project tsconfig.cjs.json --verbose --watch\"",
    "build:esm": "tsc --project tsconfig.esm.json && tsc-alias --project tsconfig.esm.json --verbose",
    "build:esm:watch": "concurrently \"tsc --project tsconfig.esm.json --watch\" \"tsc-alias --project tsconfig.esm.json --verbose --watch\"",
    "dev": "yarn clean && concurrently \"npm:build:cjs:watch\" \"npm:build:esm:watch\"",
    "token:generate": "ts-node examples/generate-token.ts",
    "test": "jest",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\""
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "@types/jest": "^29.0.3",
    "@types/react": "^18.2.31",
    "@typescript-eslint/eslint-plugin": "^5.33.1",
    "@typescript-eslint/parser": "^5.33.1",
    "concurrently": "^7.3.0",
    "eslint": "^8.22.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-import-resolver-typescript": "^3.5.1",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^28.1.3",
    "jest-jasmine2": "^28.1.3",
    "madge": "^5.0.1",
    "prettier": "^2.7.1",
    "ts-jest": "^28.0.8",
    "ts-node": "^10.9.1",
    "tsc-alias": "^1.7.0",
    "tsconfig-paths": "^4.1.0",
    "typescript": "^4.8.3"
  },
  "dependencies": {
    "radiantkit": "0.0.1"
  },
  "peerDependencies": {
    "react": ">=18"
  },
  "engines": {
    "node": ">=16"
  }
}