-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@gainium/indicators",
"version": "1.3.1",
"description": "High-performance TypeScript technical indicators library for professional trading applications with 45+ indicators optimized for real-time systems",
"keywords": [
"technical-analysis",
"indicators",
"trading",
"typescript",
"cryptocurrency",
"stocks",
"forex",
"finance",
"rsi",
"macd",
"bollinger-bands",
"moving-average",
"oscillators",
"gainium"
],
"author": {
"name": "Maksym Shamko",
"email": "maksym@gainium.io",
"url": "https://github.com/maksymshamko"
},
"organization": {
"name": "Gainium",
"url": "https://gainium.io/",
"github": "https://github.com/Gainium"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*",
"src/**/*",
"scripts/**/*",
"tsconfig.json",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Gainium/indicators.git"
},
"bugs": {
"url": "https://github.com/Gainium/indicators/issues"
},
"homepage": "https://github.com/Gainium/indicators#readme",
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.json",
"build:watch": "tsc --project tsconfig.json --watch",
"clean": "rm -rf dist",
"dev": "ts-node src/index.ts",
"lint": "tsc --project tsconfig.json --noEmit && eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build",
"build:if-needed": "npm run build",
"rebuild": "npm run clean && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"pull": "git pull origin main",
"push": "git push origin main",
"prepare": "husky"
},
"devDependencies": {
"@types/node": "^24.7.0",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"husky": "^9.1.7",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}