goldenChat base source add
This commit is contained in:
@@ -0,0 +1,69 @@
|
||||
{
|
||||
"name": "lightweight-charts-indicators",
|
||||
"version": "0.4.1",
|
||||
"type": "module",
|
||||
"description": "446 technical analysis indicators for TradingView's lightweight-charts library",
|
||||
"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"
|
||||
}
|
||||
},
|
||||
"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:types",
|
||||
"build:esm": "esbuild src/index.ts --bundle --format=esm --outfile=dist/index.mjs --platform=neutral --external:oakscriptjs --external:@types/*",
|
||||
"build:cjs": "esbuild src/index.ts --bundle --format=cjs --outfile=dist/index.cjs --platform=neutral --external:oakscriptjs --external:@types/*",
|
||||
"build:types": "tsc --emitDeclarationOnly --outDir dist",
|
||||
"build:example": "vite build",
|
||||
"dev:example": "vite",
|
||||
"clean": "rimraf dist dist-example",
|
||||
"dev": "tsc --watch",
|
||||
"typecheck": "tsc --noEmit",
|
||||
"test": "vitest run",
|
||||
"test:watch": "vitest",
|
||||
"test:pinesuite": "vitest run --config vitest.regression.config.ts"
|
||||
},
|
||||
"keywords": [
|
||||
"lightweight-charts",
|
||||
"pinescript",
|
||||
"trading",
|
||||
"technical-analysis",
|
||||
"indicators",
|
||||
"oakscript",
|
||||
"ta",
|
||||
"finance"
|
||||
],
|
||||
"author": "Odyssée",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/deepentropy/lightweight-charts-indicators.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/deepentropy/lightweight-charts-indicators/issues"
|
||||
},
|
||||
"homepage": "https://github.com/deepentropy/lightweight-charts-indicators#readme",
|
||||
"peerDependencies": {
|
||||
"oakscriptjs": "^0.2.8"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^20.10.6",
|
||||
"esbuild": "^0.19.11",
|
||||
"lightweight-charts": "^5.0.0",
|
||||
"oakscriptjs": "^0.2.8",
|
||||
"rimraf": "^6.1.0",
|
||||
"typescript": "^5.3.3",
|
||||
"vite": "^5.4.0",
|
||||
"vitest": "^1.6.0"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user