bos-cli 0.3.7

Command line utility helps to develop widgets for near.social by allowing developers to use standard developer tools like their best code editor and standard tools for source code version control, and then deploy their widgets to SocialDB in one command.
{
  "name": "bos-component-ts-starter",
  "version": "1.0.0",
  "description": "TypeScript project starter for NEAR BOS",
  "type": "module",
  "devDependencies": {
    "@types/react": "^18.2.21",
    "@typescript-eslint/eslint-plugin": "^6.5.0",
    "bos-cli": "^0.3.2",
    "eslint": "^8.48.0",
    "husky": "^8.0.0",
    "lint-staged": "^14.0.1",
    "near-social-vm-types": "^1.0.0",
    "prettier": "^2.8.4",
    "replace-in-files": "^3.0.0",
    "rimraf": "^5.0.1",
    "sucrase": "^3.34.0",
    "tsc-files": "^1.1.4"
  },
  "scripts": {
    "fmt": "prettier --write '**/*.{js,jsx,ts,tsx,json}'",
    "fmt:check": "prettier --check '**/*.{js,jsx,ts,tsx,json}'",
    "lint": "tsc --pretty --noEmit && eslint .",
    "dev": "~/.cargo/bin/bos-loader devgovgigs.near --path src",
    "build": "npm run fmt && rimraf .bos/transpiled && mkdir -p .bos/transpiled/src && sucrase ./src -d .bos/transpiled/src/npm_package_name --transforms typescript,jsx --jsx-runtime preserve --disable-es-transforms --out-extension jsx && node ./build.js",
    "deploy": "npm run build && cd .bos/transpiled && bos components deploy",
    "prepare": "husky install"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx,css,json,md}": [
      "prettier --write"
    ],
    "*.{js,jsx,ts,tsx,json}": [
      "npm run lint"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/frol/bos-component-ts-starter.git"
  },
  "keywords": [
    "near",
    "nearprotocol",
    "bos",
    "blockchainos",
    "typescript",
    "starter"
  ],
  "author": "frol.near",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/frol/bos-component-ts-starter/issues"
  },
  "homepage": "https://github.com/frol/bos-component-ts-starter#readme"
}