{
  "name": "oakscriptjs",
  "version": "0.3.0",
  "type": "module",
  "description": "PineScript v6 compatible technical analysis library for JavaScript/TypeScript",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./runtime": {
      "types": "./dist/runtime/index.d.ts",
      "import": "./dist/runtime/index.mjs",
      "require": "./dist/runtime/index.cjs"
    }
  },
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "prepublishOnly": "npm run build",
    "build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:runtime:esm && npm run build:runtime:cjs && npm run build:types",
    "build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.mjs --platform=neutral --external:@types/* --external:lightweight-charts",
    "build:cjs": "esbuild src/index.ts --bundle --format=cjs --outfile=dist/index.cjs --platform=neutral --external:@types/* --external:lightweight-charts",
    "build:runtime:esm": "esbuild src/runtime/index.ts --bundle --format=esm --outfile=dist/runtime/index.mjs --platform=neutral --external:@types/* --external:lightweight-charts",
    "build:runtime:cjs": "esbuild src/runtime/index.ts --bundle --format=cjs --outfile=dist/runtime/index.cjs --platform=neutral --external:@types/* --external:lightweight-charts",
    "build:types": "tsc --emitDeclarationOnly --outDir dist",
    "clean": "rimraf dist",
    "dev": "tsc --watch",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "lint": "eslint src",
    "lint:fix": "eslint src --fix",
    "typecheck": "tsc --noEmit",
    "format": "prettier --write \"src/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\""
  },
  "keywords": [
    "pinescript",
    "trading",
    "technical-analysis",
    "indicators",
    "charting",
    "oakscript",
    "ta",
    "finance",
    "stocks",
    "crypto"
  ],
  "author": "Odyssée",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/deepentropy/oakscriptJS.git"
  },
  "bugs": {
    "url": "https://github.com/deepentropy/oakscriptJS/issues"
  },
  "homepage": "https://github.com/deepentropy/oakscriptJS#readme",
  "peerDependencies": {
    "lightweight-charts": "^5.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/jest": "^29.5.11",
    "@types/node": "^22.10.0",
    "esbuild": "^0.28.0",
    "eslint": "^10.4.1",
    "jest": "^29.7.0",
    "lightweight-charts": "^5.0.0",
    "prettier": "^3.1.1",
    "rimraf": "^6.1.0",
    "ts-jest": "^29.4.11",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.60.1"
  },
  "engines": {
    "node": ">=18.0.0"
  }
}
